Skip to content

Commit

Permalink
up versions for release 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wlav committed Jun 30, 2022
1 parent b1a4d31 commit 1c7c3f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 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.0
-------------
2022-06-29: 2.4.0
-----------------

* Support for free (templated) functions in Numba
* Basic support for unboxing C++ public data members in Numba
Expand Down Expand Up @@ -45,7 +45,7 @@ master: 2.4.0
* Support for (multiple and nested) anonymous structs
* Pull forward upstream patch for PPC
* Only apply system_dirs patch (for asan) on Linux
* Add unloaded classes to namespaces in dir()
* Add not-yet loaded classes to namespaces in dir()
* Fix lookup of templates of function with template args
* Fix lookup of templates types with << in name
* Fix regression for accessing `char16_t` data member arrays
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.3']
requirements = ['cppyy-cling==6.27.0']
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.8', 'cppyy-cling==6.25.3']
requirements = ['cppyy-backend==1.14.9', 'cppyy-cling==6.27.0']

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.3.0'
__version__ = '2.4.0'
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.8', 'cppyy-cling==6.25.3']
requirements = ['cppyy-backend==1.14.9', 'cppyy-cling==6.27.0']
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.9', 'cppyy-backend==1.14.8', 'cppyy-cling==6.25.3']
requirements = ['CPyCppyy==1.12.11', 'cppyy-backend==1.14.9', 'cppyy-cling==6.27.0']

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

0 comments on commit 1c7c3f3

Please sign in to comment.