diff options
author | Brendan Gannon <brendan.gannon2@gmail.com> | 2022-02-18 09:30:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 09:30:34 -0500 |
commit | bb0a8cb0d3dc886339361d7b34c6b67491659914 (patch) | |
tree | f4d31e2632063be6e4d18dc7c604dfdf38146854 /asv | |
parent | c132f027b3f574d33a2c26358b9e48ea5844abed (diff) | |
download | astroconda-contrib-bb0a8cb0d3dc886339361d7b34c6b67491659914.tar.gz |
updating python build scripts to be more efficient, updating version numbers, updating package version numbers, updating python and numpy versions (#756)
* updating python build scripts to be more efficient, updating version numbers, updating package version numbers, updating python and numpy versions
* adding python up to 3.10
Co-authored-by: Brendan Gannon <bgannon@stsci.edu>
Diffstat (limited to 'asv')
-rw-r--r-- | asv/build.sh | 2 | ||||
-rw-r--r-- | asv/meta.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/asv/build.sh b/asv/build.sh index 5033d2f..aa65ff4 100644 --- a/asv/build.sh +++ b/asv/build.sh @@ -1,3 +1,3 @@ pip install --force sphinx_bootstrap_theme -$PYTHON setup.py install
\ No newline at end of file +$PYTHON -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv diff --git a/asv/meta.yaml b/asv/meta.yaml index 3ed48e3..9463430 100644 --- a/asv/meta.yaml +++ b/asv/meta.yaml @@ -1,7 +1,7 @@ {% set name = 'asv' %} {% set version = '0.1.1' %} {% set tag = 'v' + version %} -{% set number = '2' %} +{% set number = '3' %} about: home: https://github.com/spacetelescope/{{ name }} |