Skip to content

Commit

Permalink
fix for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtuck committed Sep 3, 2024
1 parent 09b1ee1 commit d7c58b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ jobs:
- if: runner.os == 'Linux'
name: Test with pytest
run: |
python setup.py pytest --addopts "test --cov fdasrsf"
pip install -e .
pytest --cov
- if: runner.os == 'Windows'
name: Build
run: |
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ select = "*-win_amd64"
environment = { PKG_CONFIG_PATH = "c:/opt/64/lib/pkgconfig" }

[build-system]
requires = ["setuptools<72.0.0", "wheel", "cffi>=1.0.0", "Cython", "findblas", "numpy"] # PEP 518 - what is required to build
requires = ["setuptools<=73.0.1", "wheel", "cffi>=1.0.0", "Cython", "findblas", "numpy"] # PEP 518 - what is required to build
build-backend = "setuptools.build_meta"

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
addopts = "--import-mode=importlib"
testpaths = [
"tests",
]

0 comments on commit d7c58b7

Please sign in to comment.