Skip to content

Commit

Permalink
Merge 1d76e9b into 9b02fbe
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Sep 16, 2023
2 parents 9b02fbe + 1d76e9b commit bd00555
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v2.15.0
env:
CIBW_SKIP: "cp36-* cp37-* cp38-* cp312-* pp* *-i686"
CIBW_SKIP: "cp36-* cp37-* cp38-* pp*-win* *-i686 *-win32"

- uses: actions/upload-artifact@v3
with:
Expand Down
7 changes: 6 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ version: 2
build:
os: "ubuntu-20.04"
tools:
python: "3.10"
python: "3.11"
jobs:
post_checkout:
- git fetch --tags
pre_install:
- git update-index --assume-unchanged rtd_requirements.txt doc/conf.py
sphinx:
configuration: doc/conf.py
fail_on_warning: true
Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
[build-system]
requires = ["setuptools", "wheel", "oldest-supported-numpy", "Cython>=3", "versioneer"]
requires = [
"wheel",
'numpy; python_full_version<"3.12.0rc1"',
'numpy>=1.26.0rc1; python_full_version>="3.12.0rc1"',
"setuptools>=42",
"versioneer",
"Cython>=3.0.0"
]
build-backend = "setuptools.build_meta"

[tool.coverage.run]
Expand Down

0 comments on commit bd00555

Please sign in to comment.