diff options
| author | Tom Christie | 2014-12-18 12:24:16 +0000 | 
|---|---|---|
| committer | Tom Christie | 2014-12-18 12:24:16 +0000 | 
| commit | 4ea140291635bde9f5e9d271d5101ec6624e51bb (patch) | |
| tree | ae62221ba7d09b46296ba52d0060e07d1cd70cb5 | |
| parent | c8d88c8c8a594e3b66547a34462db4766292ea9e (diff) | |
| parent | b8bdf812c14a287fda211810a72b53d4e671b6b2 (diff) | |
| download | django-rest-framework-4ea140291635bde9f5e9d271d5101ec6624e51bb.tar.bz2 | |
Merge master
| -rw-r--r-- | requirements.txt | 6 | ||||
| -rwxr-xr-x | setup.py | 15 | 
2 files changed, 6 insertions, 15 deletions
| diff --git a/requirements.txt b/requirements.txt index 474df716..fe5edbe7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,3 +11,9 @@ flake8==2.2.2  markdown>=2.1.0  django-guardian==1.2.4  django-filter>=0.5.4 + +# wheel for PyPI installs +wheel==0.24.0 + +# MkDocs for documentation previews/deploys +mkdocs==0.11.1 @@ -8,20 +8,6 @@ import os  import sys -# This command has been borrowed from -# https://github.com/getsentry/sentry/blob/master/setup.py -class PyTest(TestCommand): -    def finalize_options(self): -        TestCommand.finalize_options(self) -        self.test_args = ['tests'] -        self.test_suite = True - -    def run_tests(self): -        import pytest -        errno = pytest.main(self.test_args) -        sys.exit(errno) - -  def get_version(package):      """      Return package version as listed in `__version__` in `init.py`. @@ -80,7 +66,6 @@ setup(      author_email='tom@tomchristie.com',  # SEE NOTE BELOW (*)      packages=get_packages('rest_framework'),      package_data=get_package_data('rest_framework'), -    cmdclass={'test': PyTest},      install_requires=[],      classifiers=[          'Development Status :: 5 - Production/Stable', | 
