Skip to content

Commit fc40f5c

Browse files
committed
removing tox and old depends
1 parent 26bbcf0 commit fc40f5c

File tree

4 files changed

+3
-15
lines changed

4 files changed

+3
-15
lines changed

requirements-test.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
coverage >= 5.3
2-
future
32
mock
43
pytest >= 6.0.2
54
pytest-cov
65
rarfile
76
scandir
8-
tox

reusables/default_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class defaultlist(list):
66
def __init__(self, *args, factory=lambda: None, **kwargs):
77
super().__init__(*args, **kwargs)
88
if not callable(factory):
9-
raise Exception("The factory must be callable (a function)")
9+
raise Exception("The factory must be callable")
1010
self.factory = factory
1111

1212
def __getitem__(self, index):

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
url="https://github.com/cdgriffith/Reusables",
2727
license="MIT",
2828
author=attrs["author"],
29-
tests_require=["pytest", "coverage >= 3.6", "argparse", "rarfile", "tox", "scandir", "pytest-cov"],
29+
tests_require=["pytest", "coverage >= 3.6", "rarfile", "pytest-cov"],
3030
install_requires=[],
3131
author_email="[email protected]",
3232
description="Commonly Consumed Code Commodities",
@@ -61,6 +61,6 @@
6161
"Topic :: System :: Logging",
6262
],
6363
extras_require={
64-
"testing": ["pytest", "coverage >= 3.6", "argparse", "rarfile", "tox", "scandir", "pytest-cov"],
64+
"testing": ["pytest", "coverage >= 3.6", "rarfile", "pytest-cov"],
6565
},
6666
)

tox.ini

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)