Skip to content

Commit

Permalink
Fix python default version
Browse files Browse the repository at this point in the history
  • Loading branch information
MrThearMan committed Jan 10, 2023
1 parent 91fc0e9 commit 66addac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
python-version:
required: false
type: string
default: "1.3.1"
default: "3.11"
# Poetry version to use
poetry-version:
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
python-version:
required: false
type: string
default: "1.3.1"
default: "3.11"
# Poetry version to use
poetry-version:
required: false
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ on:
required: false
type: string
default: "1.3.1"
# Poetry version to use for the coveralls submit job
python-version:
required: false
type: string
default: "3.11"
# A single python version to exclude
env-exclude:
required: false
Expand Down Expand Up @@ -107,7 +112,7 @@ jobs:
uses: actions/setup-python@v4
with:
cache: "poetry"
python-version: "3.11"
python-version: ${{ inputs.python-version }}

- name: "Install dependencies"
run: poetry install
Expand Down

0 comments on commit 66addac

Please sign in to comment.