Skip to content

Commit

Permalink
remove pyramid and cherrypy support.
Browse files Browse the repository at this point in the history
limit django support to >3.2
  • Loading branch information
quinnmil committed Aug 9, 2023
1 parent bb0ef6d commit 47b7cc1
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 636 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,14 @@ Python 2.7 or 3.4+.
Scout APM has integrations for the following frameworks:

* Bottle 0.12+
* CherryPy 18.0.0+
* Celery 3.1+
* Django 1.8+
* Django 3.2+
* Dramatiq 1.0+
* Falcon 2.0+
* Flask 0.10+
* Huey 2.0+
* Hug 2.5.1+
* Nameko 2.0+
* Pyramid 1.8+
* RQ 1.0+
* Starlette 0.12+

Expand Down
130 changes: 0 additions & 130 deletions src/scout_apm/cherrypy.py

This file was deleted.

78 changes: 0 additions & 78 deletions src/scout_apm/pyramid.py

This file was deleted.

12 changes: 1 addition & 11 deletions tests/integration/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import logging

import scout_apm.api
from tests.integration import test_bottle, test_django, test_flask, test_pyramid
from tests.integration import test_bottle, test_django, test_flask

logger = logging.getLogger(__name__)

Expand All @@ -36,8 +36,6 @@
SUB_APPS["/django"] = app
with test_flask.app_with_scout() as app:
SUB_APPS["/flask"] = app
with test_pyramid.app_with_scout() as app:
SUB_APPS["/pyramid"] = app


def app(environ, start_response):
Expand Down Expand Up @@ -86,14 +84,6 @@ def app(environ, start_response):
<li><a href="/flask/crash/">Crash</a></li>
</ul>
</div>
<div class="app">
<h2>Pyramid</h2>
<ul>
<li><a href="/pyramid/">Home</a></li>
<li><a href="/pyramid/hello/">Hello</a></li>
<li><a href="/pyramid/crash/">Crash</a></li>
</ul>
</div>
</div>
</body>
</html>
Expand Down
Loading

0 comments on commit 47b7cc1

Please sign in to comment.