Skip to content

Commit

Permalink
Remove support of Python 3.7
Browse files Browse the repository at this point in the history
Python 3.7 reached its end of life in June 2023 and it is not even
supported by some of the GH actions.
  • Loading branch information
akosthekiss authored and renatahodovan committed Sep 23, 2024
1 parent 614298a commit d7ff5d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', 'pypy-3.9']
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', 'pypy-3.9']
exclude:
# NOTE: pynacl should not be built from sdist, but it has no binary
# wheel available for windows+pypy
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ interfaces:
Requirements
============

* Python_ >= 3.7
* Python_ >= 3.8
* MongoDB_ >= 3.6 (either local installation or access to remote database)
* Java_ SE >= 7 JRE or JDK (optional, required if the *Picireny* test case
reducer is used)
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ classifiers =
# 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
Expand All @@ -27,11 +26,10 @@ package_dir =
= src
packages = find:
include_package_data = True
python_requires = >=3.7
python_requires = >=3.8
install_requires =
chevron
google-api-python-client
importlib-metadata; python_version < "3.8"
inators
jinja2
keyring
Expand Down

0 comments on commit d7ff5d3

Please sign in to comment.