File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5
5
- Add ` __slots__ ` optimization in Node class, should give performance improvement
6
6
- Fixed:
7
7
- Restore universal wheels
8
- - Fix bytes/str type incompatibility in setup.py
8
+ - Bytes/str type incompatibility in setup.py
9
+ - New version of distutils rejects version suffixes of ` .postNN ` , use ` aNN ` instead
9
10
10
11
## Version 3.0.2
11
12
- Fixed:
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def version_info(target_version):
42
42
p = subprocess .Popen ('git describe --tag' .split (), stdout = subprocess .PIPE )
43
43
git_describe = str (p .communicate ()[0 ]).strip ()
44
44
release , build , commitish = git_describe .split ('-' )
45
- version = "{0}.post {1}" .format (release , build )
45
+ version = "{0}a {1}" .format (target_version , build )
46
46
else : # This is a RELEASE version
47
47
version = target_version
48
48
return {
You can’t perform that action at this time.
0 commit comments