From a35c7c30b73920283508d9232cd7586375e41104 Mon Sep 17 00:00:00 2001 From: Sergey B Kirpichev Date: Fri, 30 Nov 2018 01:04:09 +0300 Subject: [PATCH] Removed requirements.txt --- .travis.yml | 2 +- Makefile | 2 +- make.bat | 2 +- requirements.txt | 10 ---------- 4 files changed, 3 insertions(+), 13 deletions(-) delete mode 100644 requirements.txt diff --git a/.travis.yml b/.travis.yml index 1f499a7..ac2ff83 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ matrix: script: - make check install: - - pip install .[tests,develop] + - make init script: - make doctest - make coverage diff --git a/Makefile b/Makefile index 7b10baa..adbd267 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ init: - pip install -r requirements.txt + pip install .[tests,develop] test: py.test tests/ --doctest-modules matchpy/ README.rst docs/example.rst diff --git a/make.bat b/make.bat index fbca092..4e64c39 100644 --- a/make.bat +++ b/make.bat @@ -11,7 +11,7 @@ if /I %1 == docs goto :docs goto :eof :init - pip install -r requirements.txt + pip install .[tests,develop] goto :eof :test diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index fd98c46..0000000 --- a/requirements.txt +++ /dev/null @@ -1,10 +0,0 @@ -Sphinx>=1.4,<2.0 -pylint>=1.6,<2.0 -graphviz>=0.5,<0.6 -coverage>=4.2,<5.0 -hypothesis>=3.6,<4.0 -hopcroftkarp>=1.2,<2.0 -multiset>=2.0,<3.0 -pytest>=3.0,<4.0 -pytest-cov>=2.4,<3.0 -setuptools_scm