-
Notifications
You must be signed in to change notification settings - Fork 21
Changes to support NumPy 2.0 #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
0fb036c
Changes to support NumPy 2.0
oleksandr-pavlyk 7d9c025
Expand matrix of version of CPython
oleksandr-pavlyk 656cbf7
Use Windows-2019 instance in GH runner
oleksandr-pavlyk 3c5c2a2
Do not build conda packages for 3.11 and 3.12 yet
oleksandr-pavlyk 53e8995
Build on Linux using pip
oleksandr-pavlyk acb18bd
Adjusted title of the job
oleksandr-pavlyk 4430933
Use miniconda setup for multiple versions of Python and pre-release/r…
oleksandr-pavlyk bbdef36
Implemented suggestions from @antonwolfy
oleksandr-pavlyk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Editable build using pip and pre-release NumPy | ||
|
||
on: push | ||
|
||
permissions: read-all | ||
|
||
env: | ||
PACKAGE_NAME: mkl_fft | ||
MODULE_NAME: mkl_fft | ||
TEST_ENV_NAME: test_mkl_fft | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash -el {0} | ||
|
||
strategy: | ||
matrix: | ||
python: ['3.9', '3.10', '3.11', '3.12'] | ||
use_pre: ["", "--pre"] | ||
|
||
steps: | ||
- name: Install jq | ||
shell: bash -l {0} | ||
run: | | ||
sudo apt-get install jq | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: conda-incubator/setup-miniconda@v3 | ||
with: | ||
use-mamba: true | ||
mamba-version: "*" | ||
channels: conda-forge | ||
activate-environment: test | ||
python-version: ${{ matrix.python }} | ||
|
||
- name: Install MKL | ||
run: | | ||
conda install -c conda-forge mkl-devel mkl-service --override-channels | ||
conda activate test | ||
oleksandr-pavlyk marked this conversation as resolved.
Show resolved
Hide resolved
|
||
python -c "import sys; print(sys.executable)" | ||
which python | ||
python -c "import mkl; print(mkl.__file__)" | ||
|
||
- name: Build conda package | ||
run: | | ||
conda activate test | ||
oleksandr-pavlyk marked this conversation as resolved.
Show resolved
Hide resolved
|
||
pip install --no-cache-dir cython pytest hypothesis | ||
pip install --no-cache-dir numpy ${{ matrix.use_pre }} | ||
echo "CONDA_PREFFIX is '${CONDA_PREFIX}'" | ||
export MKLROOT=${CONDA_PREFIX} | ||
pip install -e . --no-build-isolation --verbose --no-deps | ||
python -m pytest -v mkl_fft/tests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.