Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
timeout-minutes: 3
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.9", "3.10"]
container:
image: python:${{ matrix.python }}-alpine
steps:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015-2020 AWeber Communications
Copyright (c) 2015-2025 AWeber Communications
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
6 changes: 6 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Release History
===============

`Next Release`_
---------------
- Add explicit dependency on setuptools package since we use it at runtime
- Remove support for Python < 3.9. The library will continue to work but we
are no longer testing older versions.

`2.5.0`_ (26 May 2022)
----------------------
- Add customization of **Server** header
Expand Down
1 change: 1 addition & 0 deletions requires/installation.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
setuptools>=64
tornado>=5,<7
4 changes: 0 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ def read_requirements(name):
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
Expand Down
2 changes: 1 addition & 1 deletion tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def test_that_calling_with_non_sprockets_application_is_deprecated(self):
self.assertEqual(len(captured), 0)


class AsyncRunTests(unittest.TestCase):
class AsyncRunTests(unittest.IsolatedAsyncioTestCase):

def test_that_on_start_callbacks_are_invoked(self):
future = concurrent.Future()
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37,py38,py39,tornado,tornado50
envlist = py39,tornado,tornado50
indexserver =
default = https://pypi.python.org/simple
toxworkdir = build/tox
Expand Down