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 7a4e733 commit f74a8efCopy full SHA for f74a8ef
.github/workflows/test.yaml
@@ -36,6 +36,7 @@ jobs:
36
- "3.10"
37
- "3.11"
38
- "3.12"
39
+ - "3.13"
40
toolchain:
41
- "stable"
42
@@ -101,6 +102,13 @@ jobs:
101
102
source venv/bin/activate
103
pip install -r requirements-311.txt
104
105
+ - name: Create Virtualenv (3.13)
106
+ if: ${{ matrix.python-version == '3.13' }}
107
+ run: |
108
+ python -m venv venv
109
+ source venv/bin/activate
110
+ pip install -r requirements-313.txt
111
+
112
- name: Run tests
113
env:
114
RUST_BACKTRACE: 1
0 commit comments