Skip to content

Commit fe87de1

Browse files
authored
Merge pull request #46 from cybertec-postgresql/45-bump-python-to-311
[+] bump Python to 3.11, closes #45
2 parents 6be42eb + 6d0b392 commit fe87de1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/setup-python@v4
1414
with:
15-
python-version: '3.10.5'
15+
python-version: '3.11.0'
1616

1717
- name: Checkout code
1818
uses: actions/checkout@v3

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/setup-python@v4
1414
with:
15-
python-version: '3.10.5'
15+
python-version: '3.11.0'
1616

1717
- name: Check out code
1818
uses: actions/checkout@v3

install-env.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
setlocal enableDelayedExpansion
44

5-
set "PYTHON_REF=https://www.python.org/ftp/python/3.10.5/python-3.10.5-amd64.exe"
5+
set "PYTHON_REF=https://www.python.org/ftp/python/3.11.0/python-3.11.0-amd64.exe"
66
@REM one should change python version in github action workflows when changed here
77

88
set PYTHON="python.exe"
99
set PIP="pip3.exe"
1010
if "%RUNNER_TOOL_CACHE%"=="" (
1111
echo Running on a local maching builder
12-
set PYTHON="%ProgramFiles%\Python310\python.exe"
12+
set PYTHON="%ProgramFiles%\Python311\python.exe"
1313
)
1414
if "%RUNNER_TOOL_CACHE%"=="" (
15-
set PIP="%ProgramFiles%\Python310\Scripts\pip3.exe"
15+
set PIP="%ProgramFiles%\Python311\Scripts\pip3.exe"
1616
)
1717

1818
echo Loading the Python installation...

0 commit comments

Comments
 (0)