Skip to content

Commit 39108bb

Browse files
committed
Python 3.11
1 parent d37edb7 commit 39108bb

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

.circleci/config.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ jobs:
138138
build_test_python:
139139
<<: *defaults
140140
docker:
141-
- image: cimg/python:3.10.1 # circleci/python:3.9.1
141+
# https://circleci.com/developer/images/image/cimg/python
142+
- image: cimg/python:3.11.0
142143
environment:
143144
CC_TEST_REPORTER_ID: $CC_TEST_REPORTER_ID
144145
COVERALLS_REPO_TOKEN: $COVERALLS_REPO_TOKEN
@@ -168,8 +169,8 @@ jobs:
168169
. venv/bin/activate
169170
python3 --version
170171
python3 -m pip install -r requirements.txt
171-
coverage-3.10 run scripts/run_unit_tests.py
172-
coverage-3.10 xml
172+
coverage-3.11 run scripts/run_unit_tests.py
173+
coverage-3.11 xml
173174
python3 scripts/get_problems_count.py
174175
175176
# upload test coverage to codecov

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: make git
3838
- uses: actions/setup-python@v4
3939
with:
40-
python-version: '3.10'
40+
python-version: '3.11'
4141
architecture: 'x64'
4242
- run: python --version
4343
- run: python -m pip install --upgrade pip
@@ -61,7 +61,7 @@ jobs:
6161
include-prerelease: true
6262
- uses: actions/setup-python@v4
6363
with:
64-
python-version: '3.10'
64+
python-version: '3.11'
6565
architecture: 'x64'
6666
- run: python --version
6767
- run: python -m pip install --upgrade pip

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- stage: build-test
1818
language: python
19-
python: 3.10
19+
python: 3.11
2020
script:
2121
- python --version
2222
- pip install --upgrade pip
@@ -25,7 +25,7 @@ jobs:
2525

2626
# - stage: deploy
2727
# language: python
28-
# python: 3.9
28+
# python: 3.11
2929
# script:
3030
# - python scripts/get_problems_count.py
3131
#https://caveofcode.com/2017/05/publish-an-angular-app-to-github-pages/

appveyor.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ branches:
77
skip_tags: true
88

99
image:
10-
- Visual Studio 2019
10+
- Visual Studio 2022
1111
- Ubuntu
1212

13-
stack: node 16, jdk 19, python 3.10 x64
13+
stack: node 16, jdk 19, python 3.11 x64
1414

1515
install:
1616
- cmd: choco install openjdk
1717
#- cmd: "SET JAVA_HOME=C:\\Program Files\\Java\\jdk16"
1818
- cmd: "SET JAVA_HOME=C:\\Program Files\\OpenJDK\\jdk-19"
1919
- cmd: "SET PATH=%JAVA_HOME%\\bin;%path%"
20-
- cmd: "SET PYTHON3=C:\\Python310-x64"
20+
- cmd: "SET PYTHON3=C:\\Python311-x64"
2121
- cmd: "SET PATH=%PYTHON3%;%PYTHON3%\\Scripts;%path%"
2222
- cmd: java --version
2323
- cmd: python --version"
2424
- cmd: python -m pip install -r requirements.txt
2525
- sh: java -version
26-
- sh: whereis python3.10
27-
- sh: . /home/appveyor/venv3.10/bin/activate
26+
- sh: whereis python3.11
27+
- sh: . /home/appveyor/venv3.11/bin/activate
2828
- sh: python --version
2929
- sh: pip install -r requirements.txt
3030

@@ -34,10 +34,10 @@ build_script:
3434

3535
test_script:
3636
- cmd: .\gradlew.bat test jacocoJupTestReport
37-
- cmd: coverage-3.10 run scripts\\run_unit_tests.py
37+
- cmd: coverage-3.11 run scripts\\run_unit_tests.py
3838
- sh: bash ./gradlew test jacocoJupTestReport
39-
- sh: coverage-3.10 run scripts/run_unit_tests.py
39+
- sh: coverage-3.11 run scripts/run_unit_tests.py
4040

4141
after_test:
4242
- cmd: python scripts\\get_problems_count.py
43-
- sh: python3.10 scripts/get_problems_count.py
43+
- sh: python3.11 scripts/get_problems_count.py

0 commit comments

Comments
 (0)