Skip to content

Commit

Permalink
Remove Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
schlenk committed Feb 27, 2024
1 parent 0e30cd2 commit bf135b7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python: [3.7, 3.8, 3.9, "3.10", "3.11"]
python: [3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ The format is based on the [KeepAChangeLog] project.

## Unreleased

### Removed

- [#xxx]: Remove Python 3.7


## 1.6.1 [2023-07-13]
- [#862] Fixed pydantic dependency

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,12 @@ def run_tests(self):
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"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",
"Topic :: Software Development :: Libraries :: Python Modules"],
python_requires='~=3.7',
python_requires='~=3.8',
extras_require={
'develop': ["cherrypy==3.2.4", "pyOpenSSL"],
'testing': tests_requires,
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 = py{37,38,39,310,311},docs,quality
envlist = py{38,39,310,311},docs,quality
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit bf135b7

Please sign in to comment.