Skip to content

Commit ab8b3b9

Browse files
Split requirements (#494)
1 parent 3498354 commit ab8b3b9

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Install dependencies
6969
uses: py-actions/py-dependency-install@v4
7070
with:
71-
path: requirements-dev.txt
71+
path: requirements.txt
7272
- name: Run unittests
7373
run: pytest --cov-report=xml tests
7474
env:

requirements-dev.txt

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
-e .
2-
aiohttp==3.8.1
3-
aiohttp-jinja2==1.5
4-
aiohttp-mako==0.4.0
5-
aioredis==2.0.1
6-
coverage==6.3.2
7-
docutils==0.20.1
8-
jinja2==3.0.3
9-
multidict==6.0.2
1+
-r requirements.txt
2+
103
mypy==0.941
11-
pygments==2.16.1
12-
pytest==7.1.1
13-
pytest-aiohttp==1.0.4
14-
pytest-cov==3.0.0
15-
pytest-sugar==0.9.4
16-
pytest-timeout==2.1.0
17-
typing_extensions>=3.8; python_version<"3.8"
18-
yarl==1.9.2

requirements.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
aiohttp==3.8.1
2+
aiohttp-jinja2==1.5
3+
aiohttp-mako==0.4.0
4+
aioredis==2.0.1
5+
coverage==6.3.2
6+
docutils==0.20.1
7+
jinja2==3.0.3
8+
multidict==6.0.2
9+
pygments==2.16.1
10+
pytest==7.1.1
11+
pytest-aiohttp==1.0.4
12+
pytest-cov==3.0.0
13+
pytest-sugar==0.9.4
14+
pytest-timeout==2.1.0
15+
typing_extensions>=3.8; python_version<"3.8"
16+
yarl==1.9.2

0 commit comments

Comments
 (0)