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
renatahodovan authored and akosthekiss committed May 19, 2024
1 parent 09b2b20 commit 7fb27c2
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.5', '3.12', 'pypy-3.9'] # FIXME: forcing to use py3.11.5 since py3.11.7 causes an inexplicable failure in multiprocessing.
python-version: [3.8, 3.9, '3.10', '3.11.5', '3.12', 'pypy-3.9'] # FIXME: forcing to use py3.11.5 since py3.11.7 causes an inexplicable failure in multiprocessing.
runs-on: ${{ matrix.os }}
steps:
- run: git config --global core.autocrlf input
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The `trophy page`_ of the found issues is available from the wiki.
Requirements
============

* Python_ >= 3.7
* Python_ >= 3.8
* Java_ SE >= 11 JRE or JDK (the latter is optional)

.. _Python: https://www.python.org
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,12 +26,11 @@ platform = any
[options]
packages = find:
include_package_data = True
python_requires = >=3.7
python_requires = >=3.8
install_requires =
antlerinator>=1!3.0.0
antlr4-python3-runtime==4.13.1
autopep8
importlib-metadata; python_version < "3.8"
inators
jinja2
regex
Expand Down

0 comments on commit 7fb27c2

Please sign in to comment.