Skip to content

Commit

Permalink
[Dependencies] Remove support for Python 3.7. and 3.8, which are in EOL.
Browse files Browse the repository at this point in the history
Signed-off-by: Giacomo Marciani <[email protected]>
  • Loading branch information
gmarciani committed Nov 27, 2024
1 parent b518fed commit ae6c7c4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 24 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ jobs:
matrix:
os: [ubuntu-latest]
name:
- Python 3.7 Tests
- Python 3.8 Tests
- Python 3.9 Tests
- Python 3.10 Tests
- Python 3.11 Tests
Expand All @@ -50,14 +48,6 @@ jobs:
- API CloudFormation Templates Checks
- Integration Tests Config Checks
include:
- name: Python 3.7 Tests
python: 3.7
toxdir: cli
toxenv: py37-nocov
- name: Python 3.8 Tests
python: 3.8
toxdir: cli
toxenv: py38-nocov
- name: Python 3.9 Tests
python: 3.9
toxdir: cli
Expand Down Expand Up @@ -119,23 +109,13 @@ jobs:
matrix:
os: [ubuntu-latest]
name:
- Python 3.7 AWS Batch CLI Tests
- Python 3.8 AWS Batch CLI Tests
- Python 3.9 AWS Batch CLI Tests
- Python 3.10 AWS Batch CLI Tests
- Python 3.11 AWS Batch CLI Tests
- Python 3.12 AWS Batch CLI Tests
- Python 3.10 AWS Batch CLI Tests Coverage
- Code Checks AWS Batch CLI
include:
- name: Python 3.7 AWS Batch CLI Tests
python: 3.7
toxdir: awsbatch-cli
toxenv: py37-nocov
- name: Python 3.8 AWS Batch CLI Tests
python: 3.8
toxdir: awsbatch-cli
toxenv: py38-nocov
- name: Python 3.9 AWS Batch CLI Tests
python: 3.9
toxdir: awsbatch-cli
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ CHANGELOG
- Upgrade mysql-community-client to version 8.0.39.
- Upgrade Werkzeug to version 3.1.3.
- Upgrade Connexion to version 3.1.x.
- Remove support for Python 3.7 and 3.8, which are in end of life.

**BUG FIXES**
- When mounting an external OpenZFS, it is no longer required to set the outbound rules for ports 111, 2049, 20001, 20002, 20003.
Expand Down
4 changes: 1 addition & 3 deletions cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def readme():
license="Apache License 2.0",
package_dir={"": "src"},
packages=find_namespace_packages("src"),
python_requires=">=3.7",
python_requires=">=3.9",
install_requires=REQUIRES,
extras_require={
"awslambda": LAMBDA_REQUIRES,
Expand All @@ -86,8 +86,6 @@ def readme():
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
Expand Down
2 changes: 1 addition & 1 deletion cli/tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
toxworkdir=../.tox
envlist =
py{37,38,39,310}-{cov,nocov}
py{39,310}-{cov,nocov}
code-linters
cfn-{tests,lint,format-check}

Expand Down

0 comments on commit ae6c7c4

Please sign in to comment.