Skip to content

Commit

Permalink
enhancement #18: fix python install in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienDanieau committed Aug 10, 2024
1 parent 4e93f51 commit 98bb1e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/generate_python_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: "3.10"
cache: 'pip' # caching pip dependencies

- name: Install dependencies
run: |
Expand Down

0 comments on commit 98bb1e8

Please sign in to comment.