Skip to content

Commit d51670a

Browse files
committed
Merge pull request #28 from ogrisel/setup-py-cleanup
MAINT cleanup setup.py and tox test for pypy3
2 parents 51e881f + ebf16fb commit d51670a

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

setup.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@
66
except ImportError:
77
from distutils.core import setup
88

9-
requirements = [
10-
]
11-
12-
test_requirements = [
13-
'pytest',
14-
'pytest-cov',
15-
'mock'
16-
]
179

1810
dist = setup(
1911
name='cloudpickle',
@@ -22,7 +14,6 @@
2214
author='Cloudpipe',
2315
author_email='cloudpipe@googlegroups.com',
2416
url='https://github.com/cloudpipe/cloudpickle',
25-
install_requires=requirements,
2617
license='LICENSE.txt',
2718
packages=['cloudpickle'],
2819
long_description=open('README.md').read(),
@@ -42,7 +33,6 @@
4233
'Topic :: Software Development :: Libraries :: Python Modules',
4334
'Topic :: Scientific/Engineering',
4435
'Topic :: System :: Distributed Computing',
45-
],
36+
],
4637
test_suite='tests',
47-
tests_require=test_requirements
4838
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, pypy
2+
envlist = py26, py27, py33, py34, pypy, pypy3
33

44
[testenv]
55
deps = -rdev-requirements.txt

0 commit comments

Comments
 (0)