Skip to content

Commit

Permalink
Drop support of Python 3.6
Browse files Browse the repository at this point in the history
Python 3.6 has reached the end of its lifetime more than a year
ago.
  • Loading branch information
akosthekiss committed Mar 20, 2023
1 parent 9d72892 commit 3136770
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/main.yml
Expand Up @@ -6,13 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', 'pypy-3.9']
exclude:
- python-version: 3.6
os: ubuntu-latest
include:
- python-version: 3.6
os: ubuntu-20.04
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', 'pypy-3.9']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -20,7 +20,7 @@ ANTLR v4 in sync.
Requirements
============

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

.. _Python: https://www.python.org
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Expand Up @@ -14,7 +14,6 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -27,7 +26,7 @@ platform = any
package_dir =
= src
packages = find:
python_requires = >=3.6
python_requires = >=3.7
install_requires =
importlib-metadata; python_version < "3.8"
inators
Expand Down

0 comments on commit 3136770

Please sign in to comment.