Skip to content

Commit 0529d31

Browse files
authored
Merge pull request #364 from isuruf/update
Update version to 0.8.0 and update AUTHORS
2 parents 7a4896c + 6819df9 commit 0529d31

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ Sumith Kulal <[email protected]>
1919
Sushant Hiray <[email protected]>
2020
Abhinav Agarwal <[email protected]>
2121
Nilay Pochhi <[email protected]>
22+
Björn Dahlgren <[email protected]>

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@ Simon Stelter <[email protected]>
2929
Jialin Ma <[email protected]>
3030
Rikard Nordgren <[email protected]>
3131
Rohit Goswami <[email protected]>
32+
Matthew Treinish <[email protected]>
33+
Michał Górny <[email protected]>
34+
Garming Sam <[email protected]>

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.12)
22
project(python_wrapper)
33

44
set(CMAKE_PREFIX_PATH ${SymEngine_DIR} ${CMAKE_PREFIX_PATH})
5-
find_package(SymEngine 0.7.0 REQUIRED CONFIG
5+
find_package(SymEngine 0.8.1 REQUIRED CONFIG
66
PATH_SUFFIXES lib/cmake/symengine cmake/symengine CMake/)
77
message("SymEngine_DIR : " ${SymEngine_DIR})
88
message("SymEngine Version : " ${SymEngine_VERSION})

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def finalize_options(self):
214214
'''
215215

216216
setup(name="symengine",
217-
version="0.7.2",
217+
version="0.8.0",
218218
description="Python library providing wrappers to SymEngine",
219219
setup_requires=['cython>=0.29.24'],
220220
long_description=long_description,

symengine/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def lambdify(args, exprs, **kwargs):
5656
return Lambdify(args, *exprs, **kwargs)
5757

5858

59-
__version__ = "0.7.2"
59+
__version__ = "0.8.0"
6060

6161

6262
# To not expose internals

symengine_version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b104685091b4b84a26ac3ab75b8c51943390eb05
1+
v0.8.1

0 commit comments

Comments
 (0)