-
Notifications
You must be signed in to change notification settings - Fork 30
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
Use numpy>=2 #613
Use numpy>=2 #613
Changes from 7 commits
9bbfc44
31532aa
4ccda58
7c0a8b1
24b7f60
245fa23
edabf56
95a24ef
8f0071d
68793d8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,8 +36,7 @@ jobs: | |
python -m pip install --upgrade pip | ||
python -m pip install wheel setuptools | ||
python -m pip install mako | ||
python -m pip install numpy==1.* | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. great |
||
python -m pip install scipy matplotlib docutils pytest sphinx bumps unittest-xml-reporting tinycc | ||
python -m pip install numpy scipy matplotlib docutils pytest sphinx bumps==0.* unittest-xml-reporting tinycc siphash24 | ||
|
||
- name: setup pyopencl on Linux + macOS | ||
if: ${{ matrix.os != 'windows-latest' }} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,4 +94,5 @@ | |
:mod:`teubner_strey` | ||
:mod:`two_lorentzian` | ||
:mod:`unified_power_Rg` | ||
|
||
""" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,7 +133,7 @@ | |
\end{cases} | ||
|
||
|
||
Boucher[#Boucher1983]_: | ||
Boucher [#Boucher1983]_: | ||
|
||
.. math:: | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ def find_version(package): | |
return version[1:-1] | ||
raise RuntimeError("Could not read version from %s/__init__.py"%package) | ||
|
||
install_requires = ['numpy==1.*', 'scipy'] | ||
install_requires = ['numpy', 'scipy'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. great |
||
|
||
with open('README.rst') as fid: | ||
long_description = fid.read() | ||
|
@@ -70,8 +70,8 @@ def find_version(package): | |
}, | ||
install_requires=install_requires, | ||
extras_require={ | ||
'full': ['docutils', 'bumps', 'matplotlib', 'columnize'], | ||
'server': ['bumps'], | ||
'full': ['docutils', 'bumps==0.*', 'matplotlib', 'columnize', 'siphash24'], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. since I am new here, just wondering why There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Got it, thanks for the explanation! |
||
'server': ['bumps==0.*'], | ||
'OpenCL': ["pyopencl"], | ||
'CUDA': ["pycuda"], | ||
}, | ||
|
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.
I am wondering reasons preventing
sasmodels
from testing against Python 3.12 in the test.yml workflow?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.
Great question! I don't think there is anything holding us back. I'm going to add 3.12 and see what happens.