]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
Remove tests_require
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 20 Sep 2019 18:45:36 +0000 (14:45 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 20 Sep 2019 18:45:36 +0000 (14:45 -0400)
Removed the "test requirements" from "setup.py test", as this command now
only emits a removal error in any case and these requirements are unused.

Change-Id: I53a798bdedad88d8f9708ed3fb6d8ed1aa49f526
Fixes: #592
docs/build/unreleased/592.rst [new file with mode: 0644]
setup.py

diff --git a/docs/build/unreleased/592.rst b/docs/build/unreleased/592.rst
new file mode 100644 (file)
index 0000000..9f5f369
--- /dev/null
@@ -0,0 +1,6 @@
+.. change::
+    :tags: bug, tests
+    :tickets: 592
+
+    Removed the "test requirements" from "setup.py test", as this command now
+    only emits a removal error in any case and these requirements are unused.
index 52c764ec0ae67a35a296b235b12c1eb9edc1ae2f..7fbf4be66a829eba63080d8dd4390bfd8326dbd2 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -72,7 +72,6 @@ setup(
     license="MIT",
     packages=find_packages(".", exclude=["examples*", "test*"]),
     include_package_data=True,
-    tests_require=["pytest!=3.9.1,!=3.9.2", "mock", "Mako"],
     cmdclass={"test": UseTox},
     zip_safe=False,
     install_requires=requires,