Skip to content

Commit

Permalink
Fix req missing for typing_extensions (#698)
Browse files Browse the repository at this point in the history
* fix: add typing_extensions

* fix: update post version
  • Loading branch information
JGSweets committed Oct 21, 2022
1 parent d6bfde3 commit 564ded0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion dataprofiler/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
MAJOR = 0
MINOR = 8
MICRO = 2
POST = 1 # otherwise None

VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO)

__version__ = VERSION
_post_str = ""
if POST:
_post_str = f".post{POST}"
__version__ = VERSION + _post_str
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ psutil>=4.0.0
scipy>=1.4.1
requests==2.27.1
networkx==2.5.1
typing-extensions==3.10.0.2

0 comments on commit 564ded0

Please sign in to comment.