Skip to content

Commit a20b896

Browse files
committed
fix: update min version to 3.9
1 parent 88ebfa7 commit a20b896

File tree

8 files changed

+8
-20
lines changed

8 files changed

+8
-20
lines changed

.config/CredScanSuppressions.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/actions/build-vsix/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ runs:
3131
uses: dtolnay/rust-toolchain@stable
3232

3333
# Jedi LS depends on dataclasses which is not in the stdlib in Python 3.7.
34-
- name: Use Python 3.8 for JediLSP
34+
- name: Use Python 3.9 for JediLSP
3535
uses: actions/setup-python@v5
3636
with:
37-
python-version: 3.8
37+
python-version: 3.9
3838
cache: 'pip'
3939
cache-dependency-path: |
4040
requirements.txt

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
# macOS runners are expensive, and we assume that Ubuntu is enough to cover the Unix case.
166166
os: [ubuntu-latest, windows-latest]
167167
# Run the tests on the oldest and most recent versions of Python.
168-
python: ['3.8', '3.x', '3.13-dev']
168+
python: ['3.9', '3.x', '3.13']
169169

170170
steps:
171171
- name: Checkout

.github/workflows/pr-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
# macOS runners are expensive, and we assume that Ubuntu is enough to cover the Unix case.
148148
os: [ubuntu-latest, windows-latest]
149149
# Run the tests on the oldest and most recent versions of Python.
150-
python: ['3.8', '3.x', '3.13-dev'] # run for 3 pytest versions, most recent stable, oldest version supported and pre-release
150+
python: ['3.9', '3.x', '3.13'] # run for 3 pytest versions, most recent stable, oldest version supported and pre-release
151151
pytest-version: ['pytest', 'pytest@pre-release', 'pytest==6.2.0']
152152

153153
steps:

build/azure-pipeline.pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ extends:
7171

7272
- task: UsePythonVersion@0
7373
inputs:
74-
versionSpec: '3.8'
74+
versionSpec: '3.9'
7575
addToPath: true
7676
architecture: 'x64'
7777
displayName: Select Python version

build/azure-pipeline.stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ extends:
6565

6666
- task: UsePythonVersion@0
6767
inputs:
68-
versionSpec: '3.8'
68+
versionSpec: '3.9'
6969
addToPath: true
7070
architecture: 'x64'
7171
displayName: Select Python version

build/ci/conda_env_1.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: conda_env_1
22
dependencies:
3-
- python=3.8
3+
- python=3.9
44
- pip

build/ci/conda_env_2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
name: conda_env_2
22
dependencies:
3-
- python=3.8
3+
- python=3.9
44
- pip

0 commit comments

Comments
 (0)