Pin python version to 3.11

This commit is contained in:
Melissa LeBlanc-Williams 2024-04-15 13:54:10 -07:00
parent 8503f01a23
commit e75ff020e4
2 changed files with 3 additions and 3 deletions

View file

@ -18,10 +18,10 @@ jobs:
awk -F '\/' '{ print tolower($2) }' | awk -F '\/' '{ print tolower($2) }' |
tr '_' '-' tr '_' '-'
) >> $GITHUB_OUTPUT ) >> $GITHUB_OUTPUT
- name: Set up Python 3.x - name: Set up Python 3.11
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.x' python-version: '3.11'
- name: Versions - name: Versions
run: | run: |
python3 --version python3 --version

View file

@ -21,7 +21,7 @@ jobs:
if: contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml') if: contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.x' python-version: '3.11'
- name: Install dependencies - name: Install dependencies
if: contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml') if: contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
run: | run: |