Skip to content

Commit

Permalink
drop Python 3.6 support, add 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
igordejanovic committed Nov 9, 2023
1 parent ed9c5f4 commit a38010f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-linux-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ tutorials.

## Python versions

Arpeggio works with Python 3.6+. Other versions might work but are not tested.
Arpeggio works with Python 3.7+. Other versions might work but are not tested.

## Open-source projects using Arpeggio

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
readme = "README.md"
license = {text = "MIT"}
keywords = ["parser", "PEG", "packrat", "library", "interpreter"]
requires-python = ">=3.6, <3.13"
requires-python = ">=3.7, <3.13"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand All @@ -20,12 +20,12 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"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",
]

[project.urls]
Expand Down

0 comments on commit a38010f

Please sign in to comment.