Skip to content

Commit

Permalink
Update supported Python versions
Browse files Browse the repository at this point in the history
- Remove Python 3.7 from the test matrix and list of supported versions
  in `setup.py`, as it reached end of life on 2023-06-27
- Add Python 3.12 to the list of tested / supported versions as the
  current major version
  • Loading branch information
jonafato committed Mar 8, 2024
1 parent d831d62 commit 8bf32d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
strategy:
matrix:
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ def readme():
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
],
keywords="validate CSV vampires",
Expand Down

0 comments on commit 8bf32d6

Please sign in to comment.