Skip to content

Commit

Permalink
cleanup some versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
wlav committed Oct 3, 2017
1 parent 83d87f2 commit 3de3bc7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.3'
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = '0.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@
long_description = f.read()

try:
import __pypy__
requirements = ['cppyy-backend']
import __pypy__, sys
version = sys.pypy_version_info
if version[0] == 5 and version[1] <= 8:
requirements = ['cppyy-backend<0.3']
else:
requirements = ['cppyy-backend']
except ImportError:
requirements = ['CPyCppyy']


setup(
name='cppyy',
version='0.2.1',
version='0.3.0',
description='Cling-based Python-C++ bindings',
long_description=long_description,

Expand Down

0 comments on commit 3de3bc7

Please sign in to comment.