Skip to content

Commit

Permalink
Undo 3.13 pending pyproj
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt committed Oct 8, 2024
1 parent e40d06b commit 99e5403
Show file tree
Hide file tree
Showing 3 changed files with 5 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 @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12"] # , "3.13" # waiting on pyproj
fail-fast: false
max-parallel: 5
defaults:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
# "Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9,<4.0"
requires-python = "3.9,3.10,3.11,3.12"
dependencies = [
"colorama",
"geopandas>=1.0.0",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[tox]
skipsdist = true
envlist = py39, py310, py311, py312, py313
envlist = py39, py310, py311, py312 #, py313

[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
; 3.13: py313

[testenv]
passenv = PYTHON_VERSION
Expand Down

0 comments on commit 99e5403

Please sign in to comment.