Skip to content

Commit

Permalink
Merge pull request #119 from madeline-scyphers/develop
Browse files Browse the repository at this point in the history
Update ax to 0.3.3
  • Loading branch information
madeline-scyphers authored Jul 10, 2023
2 parents 5959e63 + e44aa04 commit 78bf53c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,21 @@ jobs:
- uses: actions/cache@v3
with:
path: ${{ matrix.prefix }}
key: ${{ matrix.label }}-conda-${{ hashFiles('environment.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }}
key: ${{ matrix.label }}-conda-${{ hashFiles('environment_dev.yml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }}
id: cache

- name: Update base environment
run: mamba env update -n boa -f environment_dev.yml --prune
if: steps.cache.outputs.cache-hit != 'true'

- name: export env to artifact
run: mamba env export -n boa > environment_ci_${{ matrix.os }}.yml

- uses: actions/upload-artifact@v3
with:
name: environment_ci_${{ matrix.os }}.yml
path: environment_ci_${{ matrix.os }}.yml

- name: Lint
shell: bash -l {0}
run: |
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ docs/code_reference/api
# outputted opt runs (for testing usually)
boa_runs*
moo_runs*
*20*T*

# autogenerated version file from setuptools-scm
_version.py
Expand Down Expand Up @@ -50,6 +51,9 @@ __pycache__/
.AppleDouble
.LSOverride

# Linting
.flakeheaven_cache

#vscode
.vscode

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# -- Project information -----------------------------------------------------

project = "boa"
project = "BOA"
copyright = "2022, Madeline Scyphers, Justine Missik"
author = "Madeline Scyphers, Justine Missik"

Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ dependencies:
- plotly>=5.10.0
- notebook>=5.3
- ipywidgets>=7.5
- ax-platform==0.3.1
- ax-platform==0.3.3
- PyYAML

4 changes: 2 additions & 2 deletions environment_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- plotly>=5.10.0
- notebook>=5.3
- ipywidgets>=7.5
- ax-platform==0.3.1
- ax-platform==0.3.3
- PyYAML

## Jupyter and sphinx jupyter
Expand Down Expand Up @@ -53,4 +53,4 @@ dependencies:
- pydata-sphinx-theme>=0.13.0 # pydata 0.12 has a flyout menu bug
- sphinxext-remoteliteralinclude

- -e .
- -e . --global-option="--no-deps"

0 comments on commit 78bf53c

Please sign in to comment.