Skip to content
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

Release updates #125

Merged
merged 9 commits into from
Jul 27, 2023
Prev Previous commit
Next Next commit
specfile script needs --network=host. conda env has no install or -y
  • Loading branch information
scottstanie committed Jul 25, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 565bc6b603695d523e74db8db12465fd04f2f049
4 changes: 2 additions & 2 deletions .circleci/freeze-deps.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
docker run -v "$PWD:/mnt" -w /mnt --rm -it continuumio/miniconda3 bash -c '\
docker run --network=host -v "$PWD:/mnt" -w /mnt --rm -it continuumio/miniconda3 bash -c '\
conda config --add channels conda-forge && \
conda config --remove channels defaults && \
conda update -y conda && \
conda install -y --file environment.yaml && conda list --explicit > specfile.txt'
conda env create --file environment.yaml && conda list --explicit > specfile.txt'