Skip to content

Commit

Permalink
Switched to calendar versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Collins committed Feb 8, 2021
1 parent 1a06655 commit d43f0d7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
version = '1.2'
version = '2021.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.7'
release = '2021.2.8'

# 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.7'
__version__ = '2021.2.8'
"""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.7'
version = '2021.2.8'

# 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 d43f0d7

Please sign in to comment.