Skip to content

Commit

Permalink
drop support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
shakedzy committed Aug 31, 2024
1 parent 7655d57 commit bc5dcec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
test:
strategy:
matrix:
version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
version: [ "3.9", "3.10", "3.11", "3.12" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Change Log

## 0.7.7
* _Drop support for Python 3.8 as it reaches its end-of-life date_
* Fix issue [#160](https://github.com/shakedzy/dython/issues/160)

## 0.7.6
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@
dev_requirements = (HERE / "dev_requirements.txt").read_text(encoding="utf8")
EXTRAS_REQUIRE = {"dev": [s.strip() for s in dev_requirements.split("\n")]}

min_minor = 9
max_minor = 12
CLASSIFIERS = [
f"Programming Language :: Python :: 3.{str(v)}" for v in range(8, 13)
f"Programming Language :: Python :: 3.{str(v)}" for v in range(min_minor, max_minor+1)
]
PYTHON_REQUIRES = ">=3.8"
PYTHON_REQUIRES = f">=3.{min_minor}"

setup(
name=PACKAGE_NAME,
Expand Down

0 comments on commit bc5dcec

Please sign in to comment.