Skip to content

Commit

Permalink
Support Python 3.13 (#99)
Browse files Browse the repository at this point in the history
* declare support for python 3.13

* test python 3.13 in CI
  • Loading branch information
vtnate authored Oct 30, 2024
1 parent c68b2e1 commit 6e670ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.12"]
python-version: ["3.9", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[tool.poetry.dependencies]
# Urbanopt SDK requires Python 3.10 as of UOv0.9.0
python = ">=3.9, <3.13"
python = ">=3.9, <3.14"
antlr4-python3-runtime = "4.13.1"
jinja2 = "3.1.4"
pathspec = "^0.11.2"
Expand Down

0 comments on commit 6e670ca

Please sign in to comment.