Skip to content

Commit

Permalink
Merge pull request #44 from LCOGT/dev
Browse files Browse the repository at this point in the history
Alpha 1 release
  • Loading branch information
cmccully authored Oct 30, 2020
2 parents 4f307a6 + 5bb1e92 commit 1847a6e
Show file tree
Hide file tree
Showing 62 changed files with 548,105 additions and 35,938 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,8 @@ venv.bak/
.vscode

test_data/

requirements.lock

# Locally downloaded helm charts
helm-chart/banzai-nres/charts/
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ before_install:

install:
- if [[ "$INSTALL_DEPS" == 1 ]]; then pip install numpy==$NUMPY_VERSION coverage pycodestyle; fi
- pip install git+https://github.com/lcogt/banzai@0.20.1-40-g7902cb9
- pip install git+https://github.com/lcogt/banzai.git
- $PYTHON_INSTALL_COMMAND

script:
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.5.1 (2020-05-07)
------------------
- Extracted spectra now have wavelengths attached.
- The line list is stored as package data instead of in an sqlite database.

0.4.0 (2019-02-25)
------------------
- Blind master tracing on lampflats
Expand Down
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
FROM docker.lco.global/banzai:0.28.9-166-g95161e4
FROM docker.lco.global/banzai:1.0.5

USER root

RUN conda install -y coveralls sphinx statsmodels docutils=0.15

RUN pip install astropy==4.1rc1

COPY --chown=10087:10000 . /lco/banzai-nres

RUN pip install --global-option=build_ext /lco/banzai-nres/ --no-cache-dir
RUN pip install /lco/banzai-nres/ --no-cache-dir

RUN chown -R archive /home/archive

USER archive
Loading

0 comments on commit 1847a6e

Please sign in to comment.