-
Notifications
You must be signed in to change notification settings - Fork 5
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
[WIP] Prepare 0.2.0 #94
base: master
Are you sure you want to change the base?
Changes from 4 commits
c793a40
741e137
5c2be7c
8e609b9
f31661f
7ede714
adc5c78
3aff237
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 |
---|---|---|
|
@@ -9,14 +9,14 @@ | |
readme = readme_file.read() | ||
|
||
requirements = [ | ||
'dask[array] == 2021.2.0', | ||
'donfig >= 0.4.0', | ||
'numpy >= 1.14.0, <= 1.19.5', # breakage in newer numpy + numerical errors | ||
'numba >= 0.43.0', | ||
'scipy >= 1.2.0', | ||
'threadpoolctl >= 1.0.0', | ||
'dask-ms == 0.2.6', | ||
'zarr >= 2.3.1' | ||
'dask[array] >= 2021.2.0, <=2024.3.1', | ||
'donfig >= 0.4.0, <0.8.2', | ||
'numpy >= 1.14.0, <= 1.22.0', # breakage in newer numpy + numerical errors | ||
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. dask[array] imports this directly, this could probably be dropped (unless numerical errors are a concern) 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. Currently testing while I migrate to python 3.10. I want to pin the requirements down on maximum versions. I will be ditching setuptools shortly though |
||
'numba >= 0.43.0, <= 0.59.1', | ||
'scipy >= 1.2.0, <=1.12.0', | ||
'threadpoolctl >= 1.0.0, <=3.4.0', | ||
'dask-ms >= 0.2.6, <=0.2.20', | ||
'zarr >= 2.3.1, <=2.17.1' | ||
] | ||
|
||
extras_require = {'testing': ['pytest', | ||
|
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.
dask-ms imports this directly, this could probably be dropped.