-
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
Add local astropy #43
Conversation
@@ -6,7 +6,9 @@ | |||
ska_conda_path = os.path.abspath(os.path.dirname(__file__)) | |||
pkg_defs_path = os.path.join(ska_conda_path, "pkg_defs") | |||
build_list = os.path.join(ska_conda_path, "build_order.txt") | |||
no_source_pkgs = ['ska3-flight', 'ska3-core', 'ska3-dev', 'ska3-pinned', 'ska3-template'] | |||
no_source_pkgs = ['ska3-flight', 'ska3-core', 'ska3-dev', 'ska3-pinned', 'ska3-template', |
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.
We probably rename 'no_source_pkgs' to something that makes it more clear that the packages in this list just don't use the local convention we're using that about: home: has the url for a git repository that we build a custom package from using the git tags.
13432bf
to
f6ac572
Compare
- python | ||
- setuptools | ||
- numpy ==1.12.1 | ||
- llvmlite ==0.18.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.
I changed these to be very specific to our install. I think this works out so that our recipe/astropy build will be naturally deprecated when we no longer have these pins.
- setuptools | ||
- numpy ==1.12.1 | ||
- llvmlite ==0.18.0 | ||
- gcc ==4.8.5 [linux] |
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.
Also, this would not build build on CentOS5 with native gcc 4.1.2 . This suggests to me that we should add a gcc/libgcc on our few other linux-64 packages.
This is the conda-forge version from https://github.com/conda-forge/astropy-feedstock.git skare3 could use an astropy 3.0.3 built against numpy 1.12 and there isn't one in the defaults channels (limited to CentOS5 packages).
f6ac572
to
ea059af
Compare
Bundle a recipe for astropy (and some test dependencies) in skare3 to give us an astropy 3.0.3 that will still run on our CentOS5-compatible Linux env.