Skip to content

Commit

Permalink
fix deploy docs python3.11 (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanpepinartefact authored Jan 4, 2024
1 parent 79c100e commit 2389c04
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: CI
on:
push:
branches:
- 'develop'
- "develop"
pull_request:
branches:
- '*'
- "*"
workflow_call:

jobs:
Expand All @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
python-version: ["3.11"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"
- name: Install poetry
run: |
make download-poetry
Expand Down

0 comments on commit 2389c04

Please sign in to comment.