Skip to content

Commit

Permalink
Fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Jul 16, 2023
1 parent 0fc0081 commit 3a4329c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions keras_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@
from keras_core.models import Functional
from keras_core.models import Model
from keras_core.models import Sequential

__version__ = "0.1.0"
from keras_core.version import __version__
3 changes: 1 addition & 2 deletions keras_core/saving/saving_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
from keras_core.saving.serialization_lib import serialize_keras_object
from keras_core.utils import file_utils
from keras_core.utils import naming

keras_version = "0.0.0" # TODO
from keras_core.version import __version__ as keras_version

try:
import h5py
Expand Down
2 changes: 2 additions & 0 deletions keras_core/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Unique source of truth for the version number.
__version__ = "0.1.0"

0 comments on commit 3a4329c

Please sign in to comment.