There was an error while loading. Please reload this page.
1 parent 0b20ed0 commit b174653Copy full SHA for b174653
2 files changed
.flake8
@@ -2,7 +2,7 @@
2
max-line-length = 99
3
select: E,W,F,C,N
4
exclude:
5
- venv
+ .venv
6
.git
7
build
8
dist
.github/workflows/ci.yml
@@ -21,13 +21,23 @@ jobs:
21
22
- name: Set up Python
23
uses: actions/setup-python@v4
24
+ with:
25
+ python-version: '3.12'
26
+
27
+ - name: Install uv
28
+ run: pip install uv
29
30
+ - name: Create uv virtualenv
31
+ run: uv venv
32
33
- name: Install dependencies for testing
34
run: |
- pip install -r requirements-dev.txt
35
+ source .venv/bin/activate
36
+ uv pip install ".[dev]"
37
38
- name: Run tests
39
40
41
./run_tests
42
43
0 commit comments