8000 Fix version number from 0.640-dev to 0.640+dev (#5628) · python/mypy@c3eeebf · GitHub
[go: up one dir, main page]

Skip to content

Commit c3eeebf

Browse files
msullivanilevkivskyi 8000
authored andcommitted
Fix version number from 0.640-dev to 0.640+dev (#5628)
PEP 440 is of the opinion that 0.640-dev is an invalid version number, and recent pip versions whine about it. Also, using '-dev' is a mismatch with the code later in the file that checks whether the version name ends in '+dev' and so prevents the git revision from being added.
1 parent 1e9def2 commit c3eeebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from mypy import git
33

4-
__version__ = '0.640-dev'
4+
__version__ = '0.640+dev'
55
base_version = __version__
66

77
mypy_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))

0 commit comments

Comments
 (0)
0