Skip to content

Commit 4c581ce

Browse files
author
Stephen Hoover
committed
BUG Relax requirement on cloudpickle version (#187)
The requirements file states that this library needs cloudpickle~=0.2, but the setup.py file states `cloudpickle>=0.2.0,<=0.3.99`. We don't need to have such a low upper limit in the setup.py file. Relax it to match the requirements.txt file.
1 parent 1b9065f commit 4c581ce

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## Unreleased
66

7+
### Fixed
8+
- Relaxed requirement on ``cloudpickle`` version number (#187)
9+
710

811
## 1.7.1 - 2017-11-16
912
### Fixed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def main():
5757
'six>=1.10,<=1.99',
5858
'joblib>=0.11,<=0.11.99',
5959
'pubnub>=4.0,<=4.99',
60-
'cloudpickle>=0.2.0,<=0.3.99',
60+
'cloudpickle>=0.2.0,<=0.99999',
6161
],
6262
extras_require={
6363
':python_version=="2.7"': [

0 commit comments

Comments
 (0)