Skip to content
This repository has been archived by the owner on Apr 29, 2023. It is now read-only.

Commit

Permalink
Version number updated for release 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pabigot committed Sep 18, 2016
1 parent 468ef90 commit d66cbce
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PyXB -- Python W3C XML Schema Bindings
Version 1.2.5-DEV
Version 1.2.5

The source releases includes pre-built bundles for common XML namespaces,
assorted web service namespaces, and SAML. A bundle with over 75 namespaces
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

# General information about the project.
project = 'PyXB'
copyright = '2009-2015, Peter A. Bigot'
copyright = '2009-2016, Peter A. Bigot'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand All @@ -47,7 +47,7 @@
# The short X.Y version.
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.5-DEV'
release = '1.2.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyxb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__ (self, *args, **kw):
if issubclass(self.__class__.mro()[-2], ( list, dict )):
super(cscRoot, self).__init__(*args)

__version__ = '1.2.5-DEV'
__version__ = '1.2.5'
"""The version of PyXB"""

__url__ = 'http://pyxb.sourceforge.net'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys

# The current version of the system. Format is #.#.#[-DEV].
version = '1.2.5-DEV'
version = '1.2.5'

# Require Python 2.6 or higher or Python 3.1 or higher
if (sys.version_info[:2] < (2, 6)) or ((sys.version_info[0] == 3) and sys.version_info[:2] < (3, 1)):
Expand Down

0 comments on commit d66cbce

Please sign in to comment.