Skip to content

Commit

Permalink
fixed loading legacy pickle databases
Browse files Browse the repository at this point in the history
  • Loading branch information
demjanp committed Oct 20, 2022
1 parent 59d801e commit 0661143
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def finalize_options(self):

setup(
name="deposit",
version="1.4.3",
version="1.4.31",
description="Graph database focused on scientific data collection.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
4 changes: 2 additions & 2 deletions src/deposit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version_info = (1, 4, 3)
version_info = (1, 4, 31)

__version__ = '.'.join(map(str, version_info))
__title__ = 'Deposit'
__date__ = "11.10.2022"
__date__ = "20.10.2022"

from deposit.store.store import Store

Expand Down

0 comments on commit 0661143

Please sign in to comment.