Skip to content

Commit fd42084

Browse files
committed
Try to upgrade pip
1 parent d65d7e5 commit fd42084

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
run: pip install -r requirements.txt
3131

3232
- name: Build and Install Python Extension 🛠️
33-
run: pip3 install src/
33+
run: |
34+
pip3 install --upgrade pip
35+
pip3 install src/
3436
3537
- name: Run Benchmarks 📊
3638
run: pytest tests/test_benchmark.py --verbose

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Cython~=3.0.0
2-
pytest-benchmark~=5.0.0
3-
pytest~=8.3.0
4-
setuptools~=76.0.0
1+
Cython
2+
pytest
3+
pytest-benchmark
4+
setuptools

0 commit comments

Comments
 (0)