Skip to content
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
matrix:
# macos-latest is arm
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]

name: OS ${{ matrix.os }} - Python ${{ matrix.python-version }}

Expand Down
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Typing :: Stubs Only",
]
Expand Down Expand Up @@ -48,7 +49,8 @@ black = ">=23.3.0"
isort = ">=5.12.0"
openpyxl = ">=3.0.10"
# for tables, MacOS gives random CI failures on 3.9.2
tables = { version = "==3.10.1", python = "<4" } # 3.8.0 depends on blosc2 which caps python to <4
# for tables, Windows build fails on 3.10.1
tables = { version = ">=3.10.1", python = "<4" } # 3.8.0 depends on blosc2 which caps python to <4
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove the comment and make it >= 3.10.2 since that is what worked for Windows with 3.13 anyway and 3.10.2 is needed with python 3.13.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That would require Python3.11 at minimum so will leave it floating from 3.10.1.

lxml = ">=4.9.1"
pyreadstat = ">=1.2.0"
xlrd = ">=2.0.1"
Expand All @@ -58,12 +60,12 @@ odfpy = ">=1.4.1"
xarray = ">=22.6.0"
tabulate = ">=0.8.10"
jinja2 = ">=3.1"
scipy = { version = ">=1.9.1", python = "<3.13" }
scipy = { version = ">=1.9.1", python = "<3.14" }
SQLAlchemy = ">=2.0.12"
types-python-dateutil = ">=2.8.19"
beautifulsoup4 = ">=4.12.2"
html5lib = ">=1.1"
python-calamine = "0.2.0"
python-calamine = ">=0.2.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down