Skip to content

Commit c71f43b

Browse files
committed
fix: use python 3.11 by default
1 parent 3999e15 commit c71f43b

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

.github/workflows/basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-python@v2
1212
with:
13-
python-version: '3.9'
13+
python-version: '3.11'
1414
- name: Install pre-commit
1515
run: pip install pre-commit
1616
- name: Run pre-commit
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v3
4141
- uses: actions/setup-python@v2
4242
with:
43-
python-version: '3.9'
43+
python-version: '3.11'
4444
- name: Installing dependencies
4545
run: |
4646
python -m pip install pycodestyle

.github/workflows/deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
git config --global user.name "DIRACGrid CI"
3131
- uses: actions/setup-python@v2
3232
with:
33-
python-version: '3.9'
33+
python-version: '3.11'
3434
- name: Installing dependencies
3535
run: |
3636
python -m pip install \

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
git fetch --prune --unshallow
4949
- uses: actions/setup-python@v2
5050
with:
51-
python-version: '3.9'
51+
python-version: '3.11'
5252
- name: Installing dependencies
5353
run: |
5454
python -m pip install \

.github/workflows/pilotWrapper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- 2.7.5
1515
- 2.7.13
1616
- 3.6.8
17-
- 3.9.4
17+
- 3.11.4
1818

1919
steps:
2020
- uses: actions/checkout@v3

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33

44
default_language_version:
5-
python: python3.9
5+
python: python3.11
66

77
exclude: |
88
(?x)^(

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ channels:
88
dependencies:
99
# Temporary workarounds
1010
# runtime
11-
- python =3.9
11+
- python =3.11
1212
- pip
1313
- apache-libcloud
1414
- boto3

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers =
1616
Programming Language :: Python :: 3
1717
Programming Language :: Python :: 3.9
1818
Programming Language :: Python :: 3.10
19+
Programming Language :: Python :: 3.11
1920
Topic :: Scientific/Engineering
2021
Topic :: System :: Distributed Computing
2122

tests/Integration/WorkloadManagementSystem/Test_GenerateAndExecutePilotWrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# - 2.7.x (x < 9)
1010
# - 2.7.x (x >= 9)
1111
# - 3.6.x
12-
# - 3.9.x
12+
# - 3.11.x
1313
#
1414
#
1515
# Invoke this with:

0 commit comments

Comments
 (0)