Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 7 additions & 0 deletions .github/workflows/update-lockfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,17 @@ jobs:
- name: Install conda-lock from branch
run: pip install --editable .

# We don't generate for windows because xattr does not exist for
# windows and conda-lock does not yet support platform specifiers
# Remove platform arguments when one of these two things changes
- name: Run conda-lock to recreate lockfile from scratch
run: |
rm environments/conda-lock.yml
conda-lock \
--platform linux-64 \
--platform osx-64 \
--platform osx-arm64 \
--platform linux-aarch64 \
--file=environments/dev-environment.yaml \
--file=pyproject.toml \
--lockfile=environments/conda-lock.yml
Expand Down
17 changes: 7 additions & 10 deletions conda_lock/_vendor/LICENSES.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions conda_lock/_vendor/cleo/__init__.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions conda_lock/_vendor/cleo/_compat.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

110 changes: 110 additions & 0 deletions conda_lock/_vendor/cleo/_utils.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading