Skip to content

Commit ee8f230

Browse files
authored
chore: update required dependencies (#24998)
1 parent cfc65ab commit ee8f230

File tree

11 files changed

+10
-22
lines changed

11 files changed

+10
-22
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

python_files/jedilsp_requirements/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# To update requirements.txt, run the following commands.
33
# Use Python 3.8 when creating the environment or using pip-tools
44
# 1) Install `uv` https://docs.astral.sh/uv/getting-started/installation/
5-
# 2) uv pip compile --generate-hashes --upgrade python_files\jedilsp_requirements\requirements.in > python_files\jedilsp_requirements\requirements.txt
5+
# 2) uv pip compile --generate-hashes --upgrade python_files\jedilsp_requirements\requirements.in -o python_files\jedilsp_requirements\requirements.txt
66

77
jedi-language-server>=0.34.3
88
pygls>=0.10.3

requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is used to generate requirements.txt.
22
# To update requirements.txt, run the following commands.
33
# 1) Install `uv` https://docs.astral.sh/uv/getting-started/installation/
4-
# 2) uv pip compile --generate-hashes --upgrade requirements.in > requirements.txt
4+
# 2) uv pip compile --generate-hashes --upgrade requirements.in -o requirements.txt
55

66
# Unittest test adapter
77
typing-extensions==4.13.2

requirements.txt

-4 KB
Binary file not shown.

0 commit comments

Comments
 (0)