Skip to content

Commit

Permalink
Version number updated for release 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pabigot committed Sep 3, 2017
1 parent d64140a commit 4d573f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions 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.6-DEV
Version 1.2.6

The source releases includes pre-built bundles for common XML namespaces,
assorted web service namespaces, and SAML. A bundle with over 75 namespaces
Expand All @@ -8,7 +8,7 @@ those, read pyxb/bundles/opengis/README.txt before installing PyXB.

Installation: python setup.py install

Documentation: doc/html
Documentation: doc/html or https://pabigot.github.io/pyxb/

Help Forum: http://sourceforge.net/forum/forum.php?forum_id=956708

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

# General information about the project.
project = 'PyXB'
copyright = '2009-2016, Peter A. Bigot'
copyright = '2009-2017, 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 @@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.6-DEV'
release = '1.2.6'

# 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.6-DEV'
__version__ = '1.2.6'
"""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.6-DEV'
version = '1.2.6'

# 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 4d573f3

Please sign in to comment.