Skip to content

Commit

Permalink
try adding setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Dec 18, 2023
1 parent cc1b6f3 commit 80ee9f1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-latest]
os: [ubuntu-20.04, windows-2019]
arch: [auto]
include:
- os: ubuntu-20.04
Expand All @@ -32,7 +32,7 @@ jobs:
# to supply options, put them in 'env', like:
env:
CIBW_ARCHS_LINUX: ${{matrix.arch}}
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy wheel

- uses: actions/upload-artifact@v2
with:
Expand Down
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
CHANGES
=======

* try adding setuptools
* build: try using cython <3.0

1.14.1
------

Expand Down
3 changes: 2 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
cython
pytest
tox
twine
twine
setuptools
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __repr__(self):
extra_compile_args += ['-stdlib=libc++', '-mmacosx-version-min=10.9']

setuptools.setup(
setup_requires=['pbr', 'cython<3.0', 'numpy'],
setup_requires=['pbr', 'cython', 'numpy'],
python_requires=">=3.7,<4.0",
pbr=True,
ext_modules=[
Expand Down

0 comments on commit 80ee9f1

Please sign in to comment.