Skip to content

Commit

Permalink
update for np2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed May 21, 2024
1 parent bb00f37 commit f020179
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.16.5
uses: joerick/cibuildwheel@v2.18.1

- uses: actions/upload-artifact@v3
with:
Expand All @@ -76,7 +76,7 @@ jobs:
name: ${{ matrix.os }} ${{ matrix.architecture }} ${{ matrix.linux_archs }}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy cython"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.16.5
uses: joerick/cibuildwheel@v2.18.1

- uses: actions/upload-artifact@v3
with:
Expand All @@ -131,7 +131,7 @@ jobs:
name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy cython"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.16.5
uses: joerick/cibuildwheel@v2.18.1

- uses: actions/upload-artifact@v3
with:
Expand All @@ -185,7 +185,7 @@ jobs:
name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install numpy cython"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/cibuildwheel@v2.16.5
uses: joerick/cibuildwheel@v2.18.1

- uses: actions/upload-artifact@v3
with:
Expand All @@ -235,7 +235,7 @@ jobs:

name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_BEFORE_ALL: "pip install numpy cython"
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_MACOS: ${{ matrix.architecture }}
CIBW_TEST_SKIP: "*"
Expand All @@ -251,7 +251,7 @@ jobs:
python-version: "3.12"

- name: Build wheels
uses: joerick/cibuildwheel@v2.16.5
uses: joerick/cibuildwheel@v2.18.1

- uses: actions/upload-artifact@v3
with:
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,10 @@ def fix_exts(sources):
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
],
packages=['fastparquet'],
Expand All @@ -83,6 +84,6 @@ def fix_exts(sources):
else ''),
include_package_data=True,
exclude_package_data={'fastparquet': ['test/*']},
python_requires=">=3.8",
python_requires=">=3.9",
**extra
)

0 comments on commit f020179

Please sign in to comment.