From 9292ddb50b3760b570cc3f92816f5e56fc575865 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Sun, 4 Aug 2019 20:30:07 -0700 Subject: [PATCH] Revise Pipfile and setup.py per https://github.com/Pylons/pyramid_openapi3/compare/feature-add-tox...feature-add-tox-zupo?expand=1 --- Pipfile | 13 ++----------- setup.py | 3 +-- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/Pipfile b/Pipfile index ecf5f81..b940d56 100644 --- a/Pipfile +++ b/Pipfile @@ -4,13 +4,12 @@ verify_ssl = true name = "pypi" [packages] -"pyramid-openapi3" = {editable = true, path = "."} +pyramid-openapi3 = {editable = true, path = "."} [dev-packages] black = "==19.3b0" codespell = "*" docutils = "==0.15" -dataclasses = {version="*", markers="python_version < '3.7'"} flake8 = "*" flake8-assertive = "*" flake8-blind-except = "*" @@ -29,20 +28,12 @@ flake8-print = "*" flake8-self = "*" flake8-super-call = "*" flake8-tuple = "*" -importlib-resources = {version="*", markers="python_version < '3.7'"} lxml = "*" mypy = "*" pre-commit = "*" pre-commit-hooks = "*" pydocstyle = "<4.0.0" -pytest = "*" -pytest-cov = "*" +pyramid-openapi3 = {editable = true, path = ".", extras = ["testing"]} pytest-randomly = "*" twine = "*" webtest = "*" - -[testing] -pytest = "*" -coverage = "*" -pytest-cov = "*" -pytest-xdist = "*" diff --git a/setup.py b/setup.py index 6674539..d2fbda0 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,6 @@ def run(self): # noqa: D102 testing_extras = [ "pytest >= 3.1.0", # >= 3.1.0 so we can use pytest.param - "coverage", "pytest-cov", "pytest-xdist", ] @@ -74,6 +73,6 @@ def run(self): # noqa: D102 packages=find_packages(exclude=["tests"]), package_data={"pyramid_openapi3": ["static/*.*"], "": ["LICENSE"]}, install_requires=["openapi-core", "openapi-spec-validator", "pyramid"], - extras_require={"testing": testing_extras, ':python_version<"3.7"': ["importlib-resources"]}, + extras_require={"testing": testing_extras}, cmdclass={"verify": VerifyVersionCommand}, )