-
Notifications
You must be signed in to change notification settings - Fork 4
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
change docker interface to newer docker image #4
base: master
Are you sure you want to change the base?
Changes from all commits
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 |
---|---|---|
|
@@ -31,7 +31,7 @@ | |
'Programming Language :: Python :: 3', | ||
'Topic :: Scientific/Engineering :: Physics'], | ||
install_requires=[ | ||
'pint==0.8.1', 'numpy==1.13.0', 'docker==2.4.0', 'cslib', 'noodles[prov,numpy]==0.2.3'], | ||
'pint==0.8.1', 'numpy==1.13.0', 'docker==2.4.0', 'cslib', 'noodles'], | ||
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. We deliberately pin version numbers for all packages. We have seen some developers introduce breaking API changes in minor updates (e.g. between an 1.1.0 and 1.1.1 release). We have also seen regressions introduced. 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. very wise, then for the moment you should pin noodles to 0.3 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. Seems that's not in pip yet. Nothing is broken at the moment (just weird output on windows), so we'll wait for the "proper" release. The installation procedure is horrible enough as it is :) |
||
extras_require={ | ||
'test': ['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.
When we merge the no-docker branch into master (I think there is no reason not to do this), this change becomes irrelevant.