Skip to content

Commit

Permalink
MNT bump version (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrinjalali authored Dec 10, 2024
1 parent 2bec2ca commit 92b041b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
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"

0 comments on commit 92b041b

Please sign in to comment.