diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2019-11-15 16:29:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-15 16:29:10 -0500 |
commit | 33fde33643cec5633e5efbcd6b060bb3e96f6957 (patch) | |
tree | d0afb9eedbe72a5d556cb0443e86a41467a0cc6f /jwstdp/utils/jwst_delivery_prep | |
parent | 26741563e5749f63aee9079c924cb28a36a6aedf (diff) | |
download | astroconda-releases-testing-33fde33643cec5633e5efbcd6b060bb3e96f6957.tar.gz |
JWSTDP refinement (#101)
* Remove redundant internal values after implementing config file approach
* Add credential helper to support git pushes from Jenkins
Diffstat (limited to 'jwstdp/utils/jwst_delivery_prep')
-rwxr-xr-x | jwstdp/utils/jwst_delivery_prep | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/jwstdp/utils/jwst_delivery_prep b/jwstdp/utils/jwst_delivery_prep index 83645d2..6fe869b 100755 --- a/jwstdp/utils/jwst_delivery_prep +++ b/jwstdp/utils/jwst_delivery_prep @@ -15,12 +15,6 @@ import re import configparser -# TODO: Take from config file. -artifact_prefixes = ['conda_python_', 'reqs_'] -art_url_base = 'https://bytesalad.stsci.edu/artifactory' -art_repo = 'jwst-pipeline-results' - - def modify_dep(line, text): '''Replace value appearing after the last '@' in the pip spec line for the 'jwst' package with the provided text.''' @@ -197,7 +191,7 @@ def main(): write_readme(release_tag, config_map, 'README.md') - # Display the build_config to OS mappings. + # Output the build_config to OS mappings. for cset in config_map: print(f"{cset.config}:{cset.os}") |