Skip to content

Commit ead9e5f

Browse files
authored
Merge pull request #270 from isuruf/version
Update version to 0.4.0
2 parents fe09f2f + b6cad9a commit ead9e5f

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8)
22
project(python_wrapper)
33

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

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@ See License section for information about wheels
1313

1414
pip install symengine --user
1515

16-
### Ubuntu package manager
17-
18-
add-apt-repository ppa:symengine/ppa
19-
apt-get update
20-
apt-get install python-symengine # or python3-symengine if using python3
21-
2216
### Conda package manager
2317

2418
conda install python-symengine -c symengine -c conda-forge
@@ -34,7 +28,7 @@ Install prerequisites.
3428
CMake >= 2.8.7
3529
Python2 >= 2.7 or Python3 >= 3.4
3630
Cython >= 0.19.1
37-
SymEngine >= 0.2.0
31+
SymEngine >= 0.4.0
3832

3933
For SymEngine, only a specific commit/tag (see symengine_version.txt) is supported.
4034
Latest git master branch may not work as there may be breaking changes in SymEngine.
@@ -77,8 +71,8 @@ symengine.py is MIT licensed and uses several LGPL, BSD-3 and MIT licensed libra
7771

7872
Licenses for the dependencies of pip wheels are as follows,
7973

80-
pip wheels on Unix use GMP (LGPL v3), MPFR (LGPL v3), MPC (LGPL v3), LLVM (NCSA) and symengine (MIT + BSD-3).
81-
pip wheels on Windows use MPIR (LGPL v3) instead of GMP above.
82-
NumPy (BSD-3) and SymPy (BSD-3) are optional dependencies.
74+
pip wheels on Unix use GMP (LGPL v3), MPFR (LGPL v3), MPC (LGPL v3), LLVM (NCSA) and symengine (MIT + BSD-3).
75+
pip wheels on Windows use MPIR (LGPL v3) instead of GMP above.
76+
NumPy (BSD-3) and SymPy (BSD-3) are optional dependencies.
8377
Sources for these binary dependencies can be found on https://github.com/symengine/symengine-wheels/releases
8478

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def finalize_options(self):
223223
'''
224224

225225
setup(name="symengine",
226-
version="0.3.1.dev1",
226+
version="0.4.0",
227227
description="Python library providing wrappers to SymEngine",
228228
setup_requires=['cython>=0.19.1'],
229229
long_description=long_description,

0 commit comments

Comments
 (0)