-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from adrianeboyd/chore/v1.0.6
Updates related to python 3.11, set version to v1.0.6
- Loading branch information
Showing
13 changed files
with
4,298 additions
and
951 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
pathlib==1.0.1; python_version < "3.4" | ||
# Development requirements | ||
cython>=0.29.1,<0.30.0 | ||
pytest>=4.0.0,<5.0.0 | ||
pytest>=5.2.0,!=7.1.0 | ||
pytest-timeout>=1.3.3,<2.0.0 | ||
unittest2==1.1.0; python_version < "3.4" | ||
pytz==2018.7 | ||
mock>=2.0.0,<3.0.0 | ||
numpy>=1.15.0 | ||
psutil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
from .cloudpickle import * | ||
from .cloudpickle import * # noqa | ||
from .cloudpickle_fast import CloudPickler, dumps, dump # noqa | ||
|
||
__version__ = "1.2.2" | ||
# Conform to the convention used by python serialization libraries, which | ||
# expose their Pickler subclass at top-level under the "Pickler" name. | ||
Pickler = CloudPickler | ||
|
||
__version__ = '2.2.0' |
Oops, something went wrong.