Skip to content

Commit ebf16fb

Browse files
committed
MAINT cleanup setup.py and tox test for pypy3
1 parent 2dbe7f3 commit ebf16fb

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(),
@@ -38,7 +29,6 @@
3829
'Topic :: Software Development :: Libraries :: Python Modules',
3930
'Topic :: Scientific/Engineering',
4031
'Topic :: System :: Distributed Computing',
41-
],
32+
],
4233
test_suite='tests',
43-
tests_require=test_requirements
4434
)

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)