Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelVaroquaux committed Oct 7, 2021
1 parent dbf0a57 commit d9302a1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 45 deletions.
15 changes: 11 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Latest changes
Development version
-------------------

Release 1.1.0
--------------

- Fix byte order inconsistency issue during deserialization using joblib.load
in cross-endian environment: the numpy arrays are now always loaded to
use the system byte order, independently of the byte order of the system
Expand All @@ -18,8 +21,12 @@ Development version
interactively in a IPython session or in Jupyter notebook cell.
https://github.com/joblib/joblib/pull/1214

1.0.1
-----
- Update vendored loky (from version 2.9 to 3.0) and cloudpickle (from
version 1.6 to 2.0)
https://github.com/joblib/joblib/pull/1218

Release 1.0.1
-------------

- Add check_call_in_cache method to check cache without calling function.
https://github.com/joblib/joblib/pull/820
Expand All @@ -30,8 +37,8 @@ Development version
or "ConnectionResetError: [Errno 104] connection reset by peer".
https://github.com/joblib/joblib/pull/1133

1.0.0
-----
Release 1.0.0
-------------

- Make `joblib.hash` and `joblib.Memory` caching system compatible with `numpy
>= 1.20.0`. Also make it explicit in the documentation that users should now
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2008-2016, The joblib developers.
Copyright (c) 2008-2021, The joblib developers.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
39 changes: 1 addition & 38 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Dependencies
============

- Joblib has no mandatory dependencies besides Python (supported versions are
2.7+ and 3.4+).
3.6+).
- Joblib has an optional dependency on Numpy (at least version 1.6.1) for array
manipulation.
- Joblib includes its own vendored copy of
Expand Down Expand Up @@ -134,40 +134,3 @@ but, the following git command may be used to generate the lines::

git log --abbrev-commit --date=short --no-merges --sparse

Licensing
---------

joblib is **BSD-licenced** (3 clause):

This software is OSI Certified Open Source Software.
OSI Certified is a certification mark of the Open Source Initiative.

Copyright (c) 2009-2011, joblib developpers
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of Gael Varoquaux. nor the names of other joblib
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

**This software is provided by the copyright holders and contributors
"as is" and any express or implied warranties, including, but not
limited to, the implied warranties of merchantability and fitness for
a particular purpose are disclaimed. In no event shall the copyright
owner or contributors be liable for any direct, indirect, incidental,
special, exemplary, or consequential damages (including, but not
limited to, procurement of substitute goods or services; loss of use,
data, or profits; or business interruption) however caused and on any
theory of liability, whether in contract, strict liability, or tort
(including negligence or otherwise) arising in any way out of the use
of this software, even if advised of the possibility of such
damage.**
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

# General information about the project.
project = 'joblib'
copyright = '2008-2018, Joblib developers'
copyright = '2008-2021, Joblib developers'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
2 changes: 1 addition & 1 deletion joblib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#
__version__ = '1.1.0.dev0'
__version__ = '1.1.0'


import os
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ upload = upload upload_docs --upload-dir doc/_build/html
[bdist_rpm]
doc_files = doc

[bdist_wheel]
universal = 1

[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
addopts =
Expand Down

0 comments on commit d9302a1

Please sign in to comment.