We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfc6555 commit 428f98fCopy full SHA for 428f98f
.github/workflows/unit-test.yml
@@ -19,9 +19,7 @@ jobs:
19
run: |
20
python -m pip install --upgrade pip
21
pip install -r requirements.txt # If you have a requirements file
22
- pip install coverage
23
- pip install pytest
24
- pip install coverage-badge
+ pip install coverage pytest coverage-badge
25
26
27
- name: Run tests and coverage
requirements.txt
@@ -1,5 +1,6 @@
1
python-dotenv>=1.0.0,<2.0.0
2
-setuptools>=80.0.0
+# <82: pkg_resources (used by coverage-badge and similar tools) was removed in setuptools 82+
3
+setuptools>=80.0.0,<82.0.0
4
requests>=2.32.4,<3.0.0
5
urllib3>=2.6.3,<3.0.0
6
pylint>=2.0.0
0 commit comments