Skip to content

Commit 7c8c65f

Browse files
authoredJul 4, 2024
Merge pull request #50 from MislavReversingLabs/main
Remove excess dependencies
2 parents 078affb + fba9725 commit 7c8c65f

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)
Please sign in to comment.