Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

remove dependency on pytest-runner #81

Merged
merged 1 commit into from
Feb 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ def load_test_requirements():
return [line.strip() for line in f]


setup_requirements = [
'pytest-runner',
]

test_requirements = load_test_requirements()

setup(
Expand Down Expand Up @@ -79,11 +75,6 @@ def load_test_requirements():
# during testing
tests_require=test_requirements,

# Any packages required when running `python setup.py X` (where X is an alias). These packages
# are NOT installed as part of the virtualenv (thus not polluting your venv) but instead just
# made available to the setup.
setup_requires=setup_requirements,

# Note that this feature requires pep8 >= v9 and a version of setup tools greater than the
# default version installed with virtualenv. Make sure to update your tools!
python_requires='>=3.6, <4',
Expand Down