Skip to content

Commit

Permalink
use incremental internally
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkowl committed Sep 17, 2016
1 parent 1c1af4b commit 4bb0e5a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
4 changes: 2 additions & 2 deletions src/twisted/__init__.py
Expand Up @@ -58,7 +58,7 @@ class Dummy(object):
from twisted.python import compat

# setup version
from twisted._version import version
__version__ = version.short()
from twisted._version import __version__
__version__ = __version__.short()

del compat
14 changes: 5 additions & 9 deletions src/twisted/_version.py
@@ -1,11 +1,7 @@
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.
# This file is auto-generated! Do not edit!
# Use `python -m incremental.update Twisted` to change this file.

# This is an auto-generated file. Do not edit it.
from incremental import Version

"""
Provides Twisted version information.
"""

from twisted.python import versions
version = versions.Version('twisted', 16, 4, 1)
__version__ = Version('Twisted', 16, 4, 0)
__all__ = ["__version__"]

0 comments on commit 4bb0e5a

Please sign in to comment.