Skip to content

Commit

Permalink
Drop Python 3.7, add up to 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
akaihola committed Apr 19, 2024
1 parent e2dbb25 commit 11e8ea1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8, 3.9]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ These features will be included in the next release:

Added
-----
- Builds for Python 3.10, 3.11 and 3.12.

Removed
-------
- Support for Python 3.8.

Fixed
-----
Expand Down
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ classifiers =
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Operating System :: OS Independent
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
Topic :: Database
Topic :: System :: Archiving :: Backup
keywords =
Expand All @@ -32,7 +34,7 @@ url = https://github.com/akaihola/pgtricks
[options]
packages =
pgtricks
python_requires = >=3.7
python_requires = >=3.8

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit 11e8ea1

Please sign in to comment.