Skip to content

Commit

Permalink
chore: drop support for Python 3.7
Browse files Browse the repository at this point in the history
Drop support for Python 3.7 and support Python 3.12 instead.
Python 3.7 is EOL since 6.6.2023 and the latest version of Werkzeug
(a dependency of the http api) has already dropped support for it.
Thus, by using the latest version of Werkzeug, we can't guarantee
support for Python 3.7.
  • Loading branch information
jkhsjdhjs authored and s-heppner committed Jan 15, 2024
1 parent 6304b5f commit d73bfc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: ci
on: [push, pull_request]

env:
X_PYTHON_VERSION: "3.10"
X_PYTHON_VERSION: "3.12"

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.9", "3.11"]
python-version: ["3.8", "3.10", "3.12"]
env:
COUCHDB_ADMIN_PASSWORD: "yo0Quai3"
services:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"aas-compliance-check = basyx.aas.compliance_tool.cli:main"
]
},
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=[
'python-dateutil>=2.8,<3',
'lxml>=4.2,<5',
Expand Down

0 comments on commit d73bfc9

Please sign in to comment.