Skip to content

Commit

Permalink
CI: stable notebook dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjstewart committed Jan 31, 2024
1 parent f12f625 commit 3bca57e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tutorials.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('pyproject.toml') }}-tutorials
key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/required.txt') }}-${{ hashFiles('requirements/docs.txt') }}-${{ hashFiles('requirements/tests.txt') }}-tutorials
- name: Install pip dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: |
pip install .[docs,tests] planetary_computer pystac
pip install -r requirements/required.txt -r requirements/docs.txt -r requirements/tests.txt planetary_computer pystac
pip cache purge
- name: List pip dependencies
run: pip list
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/transforms.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@
"id": "w4ZbjxPyHoiB"
},
"source": [
"It's even possible to chain indices along with augmentations from kornia for a single callable during training."
"It's even possible to chain indices along with augmentations from Kornia for a single callable during training."
]
},
{
Expand Down

0 comments on commit 3bca57e

Please sign in to comment.