Bump post-release version number (now pep 386 compliant!)
This commit is contained in:
parent
cc8e893257
commit
501a551ea2
2
setup.py
2
setup.py
|
@ -33,7 +33,7 @@ if "linux" in sys.platform.lower() and not python_26:
|
|||
extensions.append(distutils.core.Extension(
|
||||
"tornado.epoll", ["tornado/epoll.c"]))
|
||||
|
||||
version = "2.2"
|
||||
version = "2.2.post1"
|
||||
|
||||
if major >= 3:
|
||||
import setuptools # setuptools is required for use_2to3
|
||||
|
|
|
@ -23,5 +23,5 @@
|
|||
# is zero for an official release, positive for a development branch,
|
||||
# or negative for a release candidate (after the base version number
|
||||
# has been incremented)
|
||||
version = "2.2"
|
||||
version_info = (2, 2, 0, 0)
|
||||
version = "2.2.post1"
|
||||
version_info = (2, 2, 0, 1)
|
||||
|
|
Loading…
Reference in New Issue