Skip to content

Commit cbda0fa

Browse files
author
Artiom N.
committed
Dependencies moved
1 parent 3ef6000 commit cbda0fa

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/pythonapp.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28-
pip install flake8 mypy pytest pylint \
29-
types-all types-attrs types-dataclasses types-PyYAML types-typed-ast
3028
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29+
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
3130
- name: MyPy types checking
3231
run: |
3332
mypy --config-file .mypy.ini markdown_toolset

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
markdown==3.2.1
22
pillow==10.3.0
33
requests==2.31.0
4-
types-markdown==3.6.0.20240316
54
weasyprint==51

requirements_dev.txt

+10
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1+
flake8
2+
mypy
13
pre-commit==2.20.0
4+
pylint
5+
pytest
6+
types-all
7+
types-attrs
8+
types-dataclasses
9+
types-markdown
10+
types-PyYAML
11+
types-typed-ast

0 commit comments

Comments
 (0)