Skip to content

Commit

Permalink
Drop the v prefix from version numbers
Browse files Browse the repository at this point in the history
This is messing up uploads to PyPI, as the v is not accepted.
  • Loading branch information
iMichka committed Apr 25, 2016
1 parent f9b0bc2 commit 5024b82
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = 'v1.7.4'
version = '1.7.4'
# The full version, including alpha/beta/rc tags.
release = 'v1.7.4'
release = '1.7.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 3 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ by setting up a git repositery on github, hosted along with gccxml.
Version 1.7.4 (not yet released)
--------------------------------

1. Since this release, pyggcxml's version numbers do not contain the ``v``
prefix anymore. This was breaking distribution on PyPI (pypi.python.org).

Version 1.7.3
-------------

Expand Down
2 changes: 1 addition & 1 deletion pygccxml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@
# TODO:
# 1. Add "explicit" property for constructors

__version__ = 'v1.7.4'
__version__ = '1.7.4'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
from setuptools import setup

setup(name="pygccxml",
version="v1.7.4",
version="1.7.4",
author="Roman Yakovenko",
author_email="roman yakovenko at gmail com",
maintainer="Michka Popoff and the Insight Software Consortium",
maintainer_email="castxml@public.kitware.com",
description="Python package for easy C++ declarations navigation.",
url="https://github.com/gccxml/pygccxml",
download_url="https://github.com/gccxml/pygccxml/archive/v1.7.4.tar.gz",
download_url="https://github.com/gccxml/pygccxml/archive/1.7.4.tar.gz",
license="Boost",
keywords="C++, declaration parser, CastXML, gccxml",
packages=["pygccxml",
Expand Down

0 comments on commit 5024b82

Please sign in to comment.