Skip to content

Commit

Permalink
update dependencies; new release version to 2.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wlav committed Jan 22, 2023
1 parent a25ca91 commit 4a56000
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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.4.2
-------------
2023-01-21: 2.4.2
-----------------

* Added a generic "cppyy.default" object
* Support explicitly created initializer lists as arguments
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.27.0']
requirements = ['cppyy-cling==6.27.1']
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.9', 'cppyy-cling==6.27.0']
requirements = ['cppyy-backend==1.14.10', 'cppyy-cling==6.27.1']

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.4.0'
__version__ = '2.4.2'
4 changes: 2 additions & 2 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.9', 'cppyy-cling==6.27.0']
requirements = ['cppyy-backend==1.14.10', 'cppyy-cling==6.27.1']
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.11', 'cppyy-backend==1.14.9', 'cppyy-cling==6.27.0']
requirements = ['CPyCppyy==1.12.12', 'cppyy-backend==1.14.10', 'cppyy-cling==6.27.1']

setup_requirements = ['wheel']
if 'build' in sys.argv or 'install' in sys.argv:
Expand Down

0 comments on commit 4a56000

Please sign in to comment.