Merge pull request #845 from hydrosquall/cameron.yick/fix-build-dep

build: remove pytest-runner (fixes #749)
This commit is contained in:
Cameron Yick
2023-03-28 21:31:38 -04:00
committed by GitHub
2 changed files with 0 additions and 6 deletions

View File

@@ -9,7 +9,6 @@ cryptography==40.0.1
Sphinx==5.3.0
PyYAML==6.0
pytest==7.2.2
pytest-runner==6.0.0
vcrpy==2.1.1
twine==4.0.2
black==23.1.0

View File

@@ -29,10 +29,6 @@ requirements = [
'websocket-client'
]
setup_requirements = [
'pytest-runner',
]
test_requirements = [
'pytest',
'vcrpy',
@@ -76,5 +72,4 @@ setup(
],
test_suite='tests',
tests_require=test_requirements,
setup_requires=setup_requirements,
)