Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ skops Changelog
:depth: 1
:local:

v0.12
-----

v0.11
-----
- Correctly restore ``default_factory`` when saving and loading a ``defaultdict``.
Expand Down
18 changes: 1 addition & 17 deletions skops/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import sys

# PEP0440 compatible formatted version, see:
# https://www.python.org/dev/peps/pep-0440/
#
Expand All @@ -16,18 +14,4 @@
# 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__ = "0.11.dev0"

try:
# This variable is injected in the __builtins__ by the build
# process. It is used to enable importing subpackages of skops when
# the binaries are not built
# mypy error: Cannot determine type of '__SKOPS_SETUP__'
__SKOPS_SETUP__ # type: ignore
except NameError:
__SKOPS_SETUP__ = False

if __SKOPS_SETUP__:
sys.stderr.write("Partial import of the library during the build process.\n")
# We are not importing the rest of the library during the build
# process, as it may not be compiled yet or cause immature import
__version__ = "0.12.dev0"