Skip to content

Commit

Permalink
Fixed GitHub Actions build (python 3.5 & 3.6 no longer available).
Browse files Browse the repository at this point in the history
  • Loading branch information
zmumi committed Feb 15, 2024
1 parent 64423aa commit e0b7a0e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11.0-alpha - 3.11']
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
-----

* Fixed redundant waring if `tornado` is not available to be used (silenced).
* Fixed GitHub Actions build (python 3.5 & 3.6 no longer available).

1.1.3
-----
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,12 @@ def prepare_description():
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'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 :: 3.11',
'Programming Language :: Python :: 3.12',
'Framework :: AsyncIO',
'Intended Audience :: Developers'
]
Expand Down

0 comments on commit e0b7a0e

Please sign in to comment.