-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Strip strings in imported databases.
Version bump.
- Loading branch information
romainsacchi
authored and
romainsacchi
committed
Nov 27, 2024
1 parent
a3cd87f
commit 3f3d81b
Showing
4 changed files
with
66 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ def package_files(directory): | |
|
||
setup( | ||
name="unfold", | ||
version="1.2.1", | ||
version="1.2.2", | ||
python_requires=">=3.10", | ||
packages=packages, | ||
author="Romain Sacchi <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
__all__ = ("Unfold", "Fold") | ||
__version__ = (1, 2, 1) | ||
__all__ = ("Unfold", "Fold", "clear_cache") | ||
__version__ = (1, 2, 2) | ||
|
||
|
||
from .fold import Fold | ||
from .unfold import Unfold | ||
from .unfold import Unfold, clear_cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters