Skip to content

Commit fba9725

Browse files
Remove excess dependencies
1 parent 6dd86bd commit fba9725

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install pytest requests unittest
26+
pip install pytest requests
2727
- name: Test with pytest
2828
run: |
2929
pytest

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
packages=packages,
2323
python_requires=">=3.6",
2424
install_requires=requires,
25-
extras_require={"test": ["pytest", "unittest"]},
25+
extras_require={"test": ["pytest"]},
2626
license="MIT",
2727
zip_safe=False,
2828
classifiers=[

0 commit comments

Comments
 (0)