Skip to content

Commit 39d1dca

Browse files
committed
Updated config files.
1 parent b3f2260 commit 39d1dca

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

__pkginfo__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,7 @@
3131
repo_root = pathlib.Path(__file__).parent
3232
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
3333
extras_require = {
34-
'dates': ['pytz>=2019.1'], 'testing': ['pytest>=6.0.0'], 'all': ['pytest>=6.0.0', 'pytz>=2019.1']
34+
'dates': ['pytz>=2019.1'],
35+
'testing': ['pytest>=6.0.0', 'pytest-regressions>=2.0.2', 'jaraco.docker>=2.0'],
36+
'all': ['jaraco.docker>=2.0', 'pytest-regressions>=2.0.2', 'pytest>=6.0.0', 'pytz>=2019.1']
3537
}

make_conda_recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
# TODO: entry_points, manifest
2828

29-
for requires in {'dates': ['pytz>=2019.1'], 'testing': ['pytest>=6.0.0'], 'all': ['pytest>=6.0.0', 'pytz>=2019.1']}.values():
29+
for requires in {'dates': ['pytz>=2019.1'], 'testing': ['pytest>=6.0.0', 'pytest-regressions>=2.0.2', 'jaraco.docker>=2.0'], 'all': ['jaraco.docker>=2.0', 'pytest-regressions>=2.0.2', 'pytest>=6.0.0', 'pytz>=2019.1']}.values():
3030
all_requirements += requires
3131

3232
all_requirements = {x.replace(" ", '') for x in set(all_requirements)}

0 commit comments

Comments
 (0)