-
Notifications
You must be signed in to change notification settings - Fork 34
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
update max SciPy to 1.7.0 #67
Conversation
As title
As title
My guess is that the CI config doesn't activate, because the changes need to be on master? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the patch, will the conda recipes also need updating?
numba-scipy/buildscripts/conda_recipes/numba-scipy/meta.yaml
Lines 21 to 30 in 9764341
- scipy<=1.6.2 | |
- setuptools | |
run: | |
- python | |
- numba | |
- scipy<=1.6.2 | |
test: | |
requires: | |
- scipy<=1.6.2 |
As title
fixed in ed96485 |
Fixes #66 |
Thanks for this PR 👍 Is it possible to get this merged anytime soon? |
@@ -18,7 +18,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
scipy-version: [">=0.16,<1.4", ">=1.4,<=1.6.2"] | |||
scipy-version: [">=0.16,<1.4", ">=1.4,<=1.7.0"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Think line 66 also needs the same change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in e671fbb
@stuartarchibald I believe I have addressed everything in this pull-request. Let's get this merged and make a new PR if broken? |
@de846 thank you for the ping on this issue. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the patch and fixes.
@stuartarchibald thank you for approval, will merge now and see what happens. |
So, after merging this, it seems like SciPy 1.7.0 isn't being picked up at all. Neither during build nor during test: During build I see:
But this doesn't actually matter, because we do build with There we get:
Then during one of the test runs, I get:
Probably it would make sense if someone else could confirm what I am seeing, to make sure I am not looking at the wrong output. |
@esc is there a scipy 1.7.0 build in defaults? |
Anaconda.org does seem to imply this exists: |
I see, it's an off by one error, we should have used |
Correct version yes, but I was unable to complete the package build:
|
A fix is here: #71 |
update max SciPy to 1.7.0
As title