0.4.0 Release Notes
With dill
, you can serialize almost anything in python, even an entire interpreter session. If you encounter any pickling failures, dill
also has some good tools to help you discover why your object fails to pickle.
dill
installs with pip
:
$ pip install dill
dill
requires:
- python or pypy, >=3.8
Optional requirements:
- pyreadline, >=1.7.1
(install with $ pip install dill[readline]
)
- objgraph, >=1.7.2
(install with $ pip install dill[graph]
)
dill
is licensed under 3-clause BSD:
>>> import dill
>>> print (dill.license())
To cite dill
:
>>> import dill
>>> print (dill.citation())
What's Changed
- update travis badge link by @mmckerns in #683
- fix buiding documentation with sphinx 8.x by @kloczek in #684
- add initial support for python 3.14 by @mmckerns in #691
- Bump starlette from 0.37.2 to 0.40.0 in /docs by @dependabot in #686
- fix typo in requirements.txt by @mmckerns in #693
- updated copyright for 2025 by @mmckerns in #696
- Bump jinja2 from 3.1.4 to 3.1.5 in /docs by @dependabot in #695
- support pypy-3.11 by @mmckerns in #701
- update docs requirements; CI for pypy3.11 by @mmckerns in #702
- fix CodeType support for PyPy3.11 7.3.19+ by @mgorny in #707
- move travis build of 3.9 to focal by @mmckerns in #708
- Bump jinja2 from 3.1.5 to 3.1.6 in /docs by @dependabot in #705
New Contributors
Full Changelog: 0.3.9...0.4.0