Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MNT bump version #455

Merged
merged 1 commit into from
Dec 10, 2024
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"
Loading