Skip to content

Commit e8f710a

Browse files
authored
Update to latest packages (#24571)
1 parent 32512b1 commit e8f710a

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/actions/smoke-tests/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ runs:
6161
env:
6262
DISPLAY: 10
6363
INSTALL_JUPYTER_EXTENSION: true
64-
uses: GabrielBB/xvfb-action@v1.5
64+
uses: GabrielBB/xvfb-action@v1.7
6565
with:
6666
run: node --no-force-async-hooks-checks ./out/test/smokeTest.js

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ jobs:
358358
env:
359359
TEST_FILES_SUFFIX: testvirtualenvs
360360
CI_PYTHON_VERSION: ${{ matrix.python }}
361-
uses: GabrielBB/xvfb-action@v1.6
361+
uses: GabrielBB/xvfb-action@v1.7
362362
with:
363363
run: npm run testSingleWorkspace
364364
working-directory: ${{ env.special-working-directory }}
@@ -367,7 +367,7 @@ jobs:
367367
- name: Run single-workspace tests
368368
env:
369369
CI_PYTHON_VERSION: ${{ matrix.python }}
370-
uses: GabrielBB/xvfb-action@v1.6
370+
uses: GabrielBB/xvfb-action@v1.7
371371
with:
372372
run: npm run testSingleWorkspace
373373
working-directory: ${{ env.special-working-directory }}
@@ -376,7 +376,7 @@ jobs:
376376
- name: Run multi-workspace tests
377377
env:
378378
CI_PYTHON_VERSION: ${{ matrix.python }}
379-
uses: GabrielBB/xvfb-action@v1.6
379+
uses: GabrielBB/xvfb-action@v1.7
380380
with:
381381
run: npm run testMultiWorkspace
382382
working-directory: ${{ env.special-working-directory }}
@@ -385,7 +385,7 @@ jobs:
385385
- name: Run debugger tests
386386
env:
387387
CI_PYTHON_VERSION: ${{ matrix.python }}
388-
uses: GabrielBB/xvfb-action@v1.6
388+
uses: GabrielBB/xvfb-action@v1.7
389389
with:
390390
run: npm run testDebugger
391391
working-directory: ${{ env.special-working-directory }}

.github/workflows/pr-check.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ jobs:
354354
env:
355355
TEST_FILES_SUFFIX: testvirtualenvs
356356
CI_PYTHON_VERSION: ${{ matrix.python }}
357-
uses: GabrielBB/xvfb-action@v1.6
357+
uses: GabrielBB/xvfb-action@v1.7
358358
with:
359359
run: npm run testSingleWorkspace
360360
working-directory: ${{ env.special-working-directory }}
@@ -363,7 +363,7 @@ jobs:
363363
- name: Run single-workspace tests
364364
env:
365365
CI_PYTHON_VERSION: ${{ matrix.python }}
366-
uses: GabrielBB/xvfb-action@v1.6
366+
uses: GabrielBB/xvfb-action@v1.7
367367
with:
368368
run: npm run testSingleWorkspace
369369
working-directory: ${{ env.special-working-directory }}
@@ -372,7 +372,7 @@ jobs:
372372
- name: Run debugger tests
373373
env:
374374
CI_PYTHON_VERSION: ${{ matrix.python }}
375-
uses: GabrielBB/xvfb-action@v1.6
375+
uses: GabrielBB/xvfb-action@v1.7
376376
with:
377377
run: npm run testDebugger
378378
working-directory: ${{ env.special-working-directory }}
@@ -618,15 +618,15 @@ jobs:
618618
TEST_FILES_SUFFIX: testvirtualenvs
619619
CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
620620
CI_DISABLE_AUTO_SELECTION: 1
621-
uses: GabrielBB/xvfb-action@v1.6
621+
uses: GabrielBB/xvfb-action@v1.7
622622
with:
623623
run: npm run testSingleWorkspace:cover
624624

625625
- name: Run single-workspace tests
626626
env:
627627
CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
628628
CI_DISABLE_AUTO_SELECTION: 1
629-
uses: GabrielBB/xvfb-action@v1.6
629+
uses: GabrielBB/xvfb-action@v1.7
630630
with:
631631
run: npm run testSingleWorkspace:cover
632632

@@ -635,7 +635,7 @@ jobs:
635635
# env:
636636
# CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
637637
# CI_DISABLE_AUTO_SELECTION: 1
638-
# uses: GabrielBB/xvfb-action@v1.6
638+
# uses: GabrielBB/xvfb-action@v1.7
639639
# with:
640640
# run: npm run testMultiWorkspace:cover
641641

@@ -644,7 +644,7 @@ jobs:
644644
# env:
645645
# CI_PYTHON_VERSION: ${{ env.PYTHON_VERSION }}
646646
# CI_DISABLE_AUTO_SELECTION: 1
647-
# uses: GabrielBB/xvfb-action@v1.6
647+
# uses: GabrielBB/xvfb-action@v1.7
648648
# with:
649649
# run: npm run testDebugger:cover
650650

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# This file is used to generate requirements.txt.
22
# To update requirements.txt, run the following commands.
33
# Use Python 3.8 when creating the environment or using pip-tools
4-
# 1) pip install pip-tools
5-
# 2) pip-compile --generate-hashes --upgrade python_files\jedilsp_requirements\requirements.in
4+
# 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
66

77
jedi-language-server>=0.34.3
88
pygls>=0.10.3
Binary file not shown.

requirements.in

Lines changed: 2 additions & 2 deletions
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.
3-
# 1) pip install pip-tools
4-
# 2) pip-compile --generate-hashes requirements.in
3+
# 1) Install `uv` https://docs.astral.sh/uv/getting-started/installation/
4+
# 2) uv pip compile --generate-hashes --upgrade requirements.in > requirements.txt
55

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

requirements.txt

6.48 KB
Binary file not shown.

0 commit comments

Comments
 (0)