Skip to content

Commit b533635

Browse files
committed
if: matrix.python-version == '3.14' run: pip install --editable .[cli,http2,socks]
1 parent 7be7442 commit b533635

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test-suite.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ jobs:
2424
python-version: "${{ matrix.python-version }}"
2525
allow-prereleases: true
2626
- name: "Install dependencies"
27+
if: matrix.python-version != '3.14'
2728
run: "scripts/install"
29+
- if: matrix.python-version == '3.14'
30+
run: |
31+
pip install -r requirements.txt
32+
pip install --editable .[cli,http2,socks]
2833
- name: "Run linting checks"
2934
run: "scripts/check"
3035
- name: "Build package & docs"

0 commit comments

Comments
 (0)