Skip to content

Commit

Permalink
use up to date pip
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Oct 1, 2024
1 parent 3110229 commit 0506fb9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/notebook-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,14 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Generate notebooks
run: |
python -m pip install jupytext
python examples/generate_notebooks.py
python3 -m pip install jupytext
python3 examples/generate_notebooks.py
- name: Push to GitHub
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Set up Python 3.7
uses: actions/setup-python@v1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: "3.12"
- name: Build a binary wheel and a source tarball
run: |
pip install wheel
Expand Down

0 comments on commit 0506fb9

Please sign in to comment.