Skip to content

Commit 47c7415

Browse files
authored
Merge pull request #133 from jschlyter/python311
build with Python 3.11
2 parents de2b92e + 1d97d4e commit 47c7415

File tree

4 files changed

+497
-525
lines changed

4 files changed

+497
-525
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v3
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
name: Build with Poetry and Publish to PyPI
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: actions/setup-python@v2
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v3
1414
- name: Install and configure Poetry
1515
run: |
1616
pip install poetry

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ jobs:
2727
- "3.8"
2828
- "3.9"
2929
- "3.10"
30-
- "3.11.0-rc.2"
30+
- "3.11"
3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v2
34+
uses: actions/setup-python@v3
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
- name: Get full python version
3838
id: full-python-version
3939
run: |
40-
echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info[:3]))")
40+
echo version=$(python -c "import sys, platform; print('.'.join(str(v) for v in sys.version_info[:3]) + '_' + platform.machine())") >> $GITHUB_OUTPUT
4141
- name: Set up cache
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3
4343
with:
4444
path: .venv
4545
key: ${{ runner.os }}-venv-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)