Skip to content

Commit 666f291

Browse files
Fix commit hash version pip incompatibility & bump version.
1 parent 365c05d commit 666f291

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@
229229
"metadata": {
230230
"collapsed": false,
231231
"ExecuteTime": {
232-
"start_time": "2023-04-25T11:36:02.690565Z",
233-
"end_time": "2023-04-25T11:36:02.693938Z"
232+
"start_time": "2023-04-25T17:04:41.598905Z",
233+
"end_time": "2023-04-25T17:04:41.602388Z"
234234
}
235235
}
236236
}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup, find_packages
33

44
MAJOR = "0"
5-
MINOR = "0"
5+
MINOR = "1"
66
PATCH = "1"
77

88
_VERSION_TAG = "{MAJOR}.{MINOR}.{PATCH}".format(MAJOR=MAJOR, MINOR=MINOR, PATCH=PATCH)
@@ -14,7 +14,7 @@
1414
def get_version():
1515
import subprocess
1616
commit_hash = str(subprocess.run(['git', 'rev-parse', 'HEAD'], stdout=subprocess.PIPE).stdout)[2:-3]
17-
return '{VERSION_TAG}.{GIT_SHA}'.format(VERSION_TAG=_VERSION_TAG, GIT_SHA=commit_hash)
17+
return '{VERSION_TAG}'.format(VERSION_TAG=_VERSION_TAG)
1818

1919

2020
setup(

0 commit comments

Comments
 (0)