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.
2 parents 55a00fe + 80f0ade commit b183c60Copy full SHA for b183c60
.github/workflows/ci.yml
@@ -29,6 +29,9 @@ jobs:
29
- name: Ensure the code passes lints
30
run: flake8 homu/
31
32
+ - name: Preinstall pinned Python dependencies
33
+ run: pip install -r requirements.txt
34
+
35
- name: Install homu on the builder
36
run: pip install -e .
37
requirements.txt
@@ -6,6 +6,7 @@ idna==3.6
6
Jinja2==3.1.3
7
MarkupSafe==2.1.5
8
pip==20.0.2
9
+pluggy==1.5.0
10
requests==2.31.0
11
retrying==1.3.4
12
setuptools==45.2.0
setup.py
@@ -20,10 +20,10 @@
20
'retrying',
21
],
22
setup_requires=[
23
- 'pytest-runner',
+ 'pytest-runner<8',
24
25
tests_require=[
26
- 'pytest',
+ 'pytest<8',
27
28
package_data={
'homu': [
0 commit comments