Skip to content

Commit

Permalink
bump versions up for release
Browse files Browse the repository at this point in the history
  • Loading branch information
wlav committed Nov 15, 2021
1 parent 59114a0 commit 30f4021
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ See :doc:`packages <packages>`, for details on the package structure.
PyPy support lags CPython support.


master: 2.2.0
-------------
2021-11-14: 2.2.0
-----------------

* Migrated repos to github/wlav
* Properly resolve enum type of class enums
Expand Down
4 changes: 2 additions & 2 deletions installer/cppyy_monkey_patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_requires_for_build_wheel(*args, **kwds):
try:
import __pypy__, sys
version = sys.pypy_version_info
requirements = ['cppyy-cling==6.25.1']
requirements = ['cppyy-cling==6.25.2']
if version[0] == 5:
if version[1] <= 9:
requirements = ['cppyy-cling<6.12']
Expand All @@ -32,7 +32,7 @@ def get_requires_for_build_wheel(*args, **kwds):
requirements = ['cppyy-cling<=6.18.2.3']
except ImportError:
# CPython
requirements = ['cppyy-backend==1.14.6', 'cppyy-cling==6.25.1']
requirements = ['cppyy-backend==1.14.7', 'cppyy-cling==6.25.2']

return requirements + _get_requires_for_build_wheel(*args, **kwds)

Expand Down
2 changes: 1 addition & 1 deletion python/cppyy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.0'
__version__ = '2.2.0'
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
try:
import __pypy__, sys
version = sys.pypy_version_info
requirements = ['cppyy-backend==1.14.6', 'cppyy-cling==6.25.1']
requirements = ['cppyy-backend==1.14.7', 'cppyy-cling==6.25.2']
if version[0] == 5:
if version[1] <= 9:
requirements = ['cppyy-backend<0.3', 'cppyy-cling<6.12']
Expand All @@ -23,7 +23,7 @@
requirements = ['cppyy-backend<=1.10', 'cppyy-cling<=6.18.2.3']
except ImportError:
# CPython
requirements = ['CPyCppyy==1.12.7', 'cppyy-backend==1.14.6', 'cppyy-cling==6.25.1']
requirements = ['CPyCppyy==1.12.8', 'cppyy-backend==1.14.7', 'cppyy-cling==6.25.2']

setup_requirements = ['wheel']
if 'build' in sys.argv or 'install' in sys.argv:
Expand Down Expand Up @@ -53,7 +53,7 @@ def find_version(*file_paths):
class my_install(_install):
def __init__(self, *args, **kwds):
if 0x3000000 <= sys.hexversion:
super(_install, self).__init__(self, *args, **kwds)
super(_install, self).__init__(*args, **kwds)
else:
# b/c _install is a classobj, not type
_install.__init__(self, *args, **kwds)
Expand Down Expand Up @@ -120,12 +120,13 @@ def get_outputs(self):

'License :: OSI Approved :: BSD License',

'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: C',
'Programming Language :: C++',

Expand Down

0 comments on commit 30f4021

Please sign in to comment.