We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be7442 commit b533635Copy full SHA for b533635
.github/workflows/test-suite.yml
@@ -24,7 +24,12 @@ jobs:
24
python-version: "${{ matrix.python-version }}"
25
allow-prereleases: true
26
- name: "Install dependencies"
27
+ if: matrix.python-version != '3.14'
28
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]
33
- name: "Run linting checks"
34
run: "scripts/check"
35
- name: "Build package & docs"
0 commit comments