expand cloudpickle range (#1836)

* expand cloudpickle range

* 0.17.1 release note
This commit is contained in:
pzhokhov
2020-03-05 10:49:52 -05:00
committed by GitHub
parent c476e8553f
commit 743a2d5eac
3 changed files with 5 additions and 2 deletions

View File

@@ -160,6 +160,9 @@ We are using `pytest <http://doc.pytest.org>`_ for tests. You can run them via:
What's new What's new
========== ==========
- 2020-03-05 (v 0.17.1)
+ update cloudpickle dependency to be >=1.2.0,<1.4.0
- 2020-02-21 (v 0.17.0) - 2020-02-21 (v 0.17.0)
- Drop python 2 support - Drop python 2 support
+ Add python 3.8 build + Add python 3.8 build

View File

@@ -1 +1 @@
VERSION = '0.17.0' VERSION = '0.17.1'

View File

@@ -28,7 +28,7 @@ setup(name='gym',
if package.startswith('gym')], if package.startswith('gym')],
zip_safe=False, zip_safe=False,
install_requires=[ install_requires=[
'scipy', 'numpy>=1.10.4', 'six', 'pyglet>=1.4.0,<=1.5.0', 'cloudpickle~=1.3.0', 'scipy', 'numpy>=1.10.4', 'six', 'pyglet>=1.4.0,<=1.5.0', 'cloudpickle>=1.2.0,<1.4.0',
'enum34~=1.1.6;python_version<"3.4"', 'enum34~=1.1.6;python_version<"3.4"',
], ],
extras_require=extras, extras_require=extras,