Skip to content

Commit

Permalink
Merge pull request #48 from hsluv/drop-python-3-8-and-add-3-13
Browse files Browse the repository at this point in the history
Drop end-of-life Python 3.8 and add Python 3.13
  • Loading branch information
hartwork authored Oct 12, 2024
2 parents 735c9f2 + 39ec9a5 commit 611ac8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
run_test_suite:
strategy:
matrix:
python-version: [3.7, 3.12] # no current need for in-between versions
python-version: [3.9, 3.13] # no current need for in-between versions
name: Run the Test Suite
runs-on: ubuntu-20.04
steps:
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@
"Operating System :: OS Independent",
"Topic :: Software Development",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
],
python_requires='>=3.7',
python_requires='>=3.9',
setup_requires=[
'setuptools>=38.6.0', # for long_description_content_type
],
Expand Down

0 comments on commit 611ac8a

Please sign in to comment.