Skip to content

Commit

Permalink
flydra_core,flydra_analysis: require Python 3.9
Browse files Browse the repository at this point in the history
Really, I just wanted to upgrade to tables 3.9.0
to fix build errors following
PyTables/PyTables@a70e36f

This seems to require Python 3.9.
  • Loading branch information
astraw committed Dec 9, 2024
1 parent 5ed8d24 commit 90c26d0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-latest, macos-11, macos-latest, windows-2019, windows-latest]
python-version: [ '3.8', '3.x' ]
python-version: [ '3.9', '3.x' ]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion flydra_analysis/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ wt0803 = "flydra_analysis.a2.conditions_draw:wt0803"

[build-system]
# following advice in https://stackoverflow.com/a/66479252
requires = ["setuptools >= 61", "cython >= 0.29", "numpy"]
requires = ["setuptools >= 61", "cython >= 0.29.32", "numpy"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand Down
4 changes: 2 additions & 2 deletions flydra_core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ urls.homepage = "https://github.com/strawlab/flydra"
dependencies = [
"numpy >= 1.19",

"tables",
"tables>=3.9.0",
"cgkit1 >= 1.3.0",
"pymvg >= 2.1.0",
"adskalman",
Expand All @@ -29,7 +29,7 @@ flydra_analysis_flip_calibration = "flydra_core.reconstruct:flip_calibration"

[build-system]
# following advice in https://stackoverflow.com/a/66479252
requires = ["setuptools >= 61", "cython >= 0.29", "numpy"]
requires = ["setuptools >= 61", "cython >= 0.29.32", "numpy"]
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
Expand Down

0 comments on commit 90c26d0

Please sign in to comment.