Skip to content

Commit

Permalink
add Python 3.13 support and relax upper version
Browse files Browse the repository at this point in the history
  • Loading branch information
igordejanovic committed Oct 26, 2024
1 parent 7d6a334 commit 6796092
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 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.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ please take a look at related PRs and issues and see if the change affects you.

## [Unreleased]

- Added support for Python 3.13 and relax restriction on upper Python version.
- Fix parsing of regex rules in peg and cleanpeg syntaxes ([#125]). Thanks
@smurfix for reporting ([#123]).
- **(BIC)** Removed support for Python 3.6. The minimal supported version is 3.7.
Expand Down
3 changes: 2 additions & 1 deletion 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.7, <3.13"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand All @@ -26,6 +26,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[project.urls]
Expand Down

0 comments on commit 6796092

Please sign in to comment.