Skip to content

Commit

Permalink
up versions for release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wlav committed Jul 17, 2021
1 parent a90c006 commit fb2ac8c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 3 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.1.0
-------------
2021-07-17: 2.1.0
-----------------

* Support for vector calls with CPython 3.8 and newer
* Support for typed C++ literals as defaults when mixing with keywords
Expand All @@ -22,6 +22,7 @@ master: 2.1.0
* sizeof() forwards to ctypes.sizeof() for ctypes' types
* Upgrade cmake fragments for Clang9
* Prevent clash with Julia's LLVM when loading cppyy into PyCall
* Upgrade to latest Cling patch release


2021-05-14: 2.0.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.25.0']
requirements = ['cppyy-cling==6.25.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.5', 'cppyy-cling==6.25.0']
requirements = ['cppyy-backend==1.14.6', 'cppyy-cling==6.25.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.0.0'
__version__ = '2.1.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.5', 'cppyy-cling==6.25.0']
requirements = ['cppyy-backend==1.14.6', 'cppyy-cling==6.25.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.6', 'cppyy-backend==1.14.5', 'cppyy-cling==6.25.0']
requirements = ['CPyCppyy==1.12.7', 'cppyy-backend==1.14.6', 'cppyy-cling==6.25.1']

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

0 comments on commit fb2ac8c

Please sign in to comment.