Skip to content

Commit

Permalink
version 3.1.1 to pick up bugfix in clingwrapper 1.15.1 for "failed to…
Browse files Browse the repository at this point in the history
… materialize symbols"
  • Loading branch information
wlav committed Nov 14, 2023
1 parent 2398717 commit 75dda50
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ See :doc:`packages <packages>`, for details on the package structure.
PyPy support lags CPython support.


2023-11-13: 3.1.1
-----------------

* Alt fix for "failed to materialize symbols" on some Linux systems


2023-11-13: 3.1.0
-----------------

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.28.0']
requirements = ['cppyy-cling==6.30.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.11', 'cppyy-cling==6.28.0']
requirements = ['cppyy-backend==1.15.1', 'cppyy-cling==6.30.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__ = '3.1.0'
__version__ = '3.1.1'
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.15.0', 'cppyy-cling==6.30.0']
requirements = ['cppyy-backend==1.15.1', 'cppyy-cling==6.30.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.14', 'cppyy-backend==1.15.0', 'cppyy-cling==6.30.0']
requirements = ['CPyCppyy==1.12.15', 'cppyy-backend==1.15.1', 'cppyy-cling==6.30.0']

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

0 comments on commit 75dda50

Please sign in to comment.