Skip to content

Commit

Permalink
setup: Drop support for EOL python < 3.8
Browse files Browse the repository at this point in the history
The new PySNMP package (pysnmplib) is not available for Python < 3.8. At
the same time, we only want to support the actively maintained
(supported) Python versions, which at the time of writing are 3.8 to
3.12. Hence, update the Python requirement on setup.py and drop the CI
jobs testing Python < 3.8.
  • Loading branch information
blockstreamsatellite committed Dec 19, 2023
1 parent a0de0d0 commit 3155f9d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@ stages:
# Exercise all imports triggered when launching the CLI
- blocksat-cli --version

unit-tests-py36:
extends: .test
image: python:3.6

unit-tests-py37:
extends: .test
image: python:3.7

unit-tests-py38:
extends: .test
image: python:3.8
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
],
python_requires='>=3')
python_requires='>=3.8')

0 comments on commit 3155f9d

Please sign in to comment.