Skip to content

Commit 756bc26

Browse files
authored
Merge pull request #163 from isuruf/release
Prepare for v0.3.0.rc0
2 parents af8ce6a + 7d372b7 commit 756bc26

File tree

4 files changed

+27
-11
lines changed

4 files changed

+27
-11
lines changed

.travis.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,3 @@ script:
114114
notifications:
115115
email: false
116116

117-
deploy:
118-
provider: pypi
119-
user: isuruf
120-
password:
121-
secure: "HsVXENZjVg05Mce5Ts6iG292Ch03YHETto/512Nu1R8xeRWeerMZpumBE2X0WPrDBuV/zLMlf/jc8rN6EX9GEGaBxTPwFq5tNRTFjShUcmSxWLWPVgF7fYm1+pPjkzODOTIHPkJB00nw22DUuF2kg/gCm7uZeaGNsBELNpKPJyRv9ShxOLqOxK+WR5QQw+xMmmq+ugsc1/kjnxuczcUs/dXyYfFrw9nrKD8qUPeyEsaea1jUxDIVLBtaxnwbmhtw+GPE5tH+5Q/Y8mA7epw5Znj47W+WxfF/sdtBt31m9KNmMcISYpvUHpcju/gTUAeRBU0Ln04teR6iMHUcQJerM0T61uZCNCoYQv1A9oVKA3NO1Gb6in8BqoR+wZB2po+g8U3x+nKGxJrFNekm9zAhs7yQEYnP6C9ekUpe+73qi6I6fzMB71sMJa6SegYL99z+UW6zjhIesf6nX43U+954pN7FsrIzkdTHW67YrBfKr8PEZ0VPxJzokWTPkYO5Qkvjp1TNyFBsV2DS5qpMMYHYxNDbxj5elYZxPt+bvRbtmMdS4p2ze5DVWEQbwW+jZydBoccH6uAhjXkFRil9/5LAJmwfIYcBrF6RkZu1VhSSIULhtOqtA7psSSBSprqyhPsvs8l13PUs92SogXCrYFfHgNR6J8UM3iiP0yooeV6Z+gw="
122-
on:
123-
condition: $TRIGGER_FEEDSTOCK = yes
124-
tags: true

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ a fast C++ symbolic manipulation library.
77

88
## Installation
99

10+
### Pip
11+
12+
See License section for information about wheels
13+
14+
pip install symengine --user
15+
1016
### Ubuntu package manager
1117

1218
add-apt-repository ppa:symengine/ppa
@@ -59,3 +65,16 @@ Use SymEngine from Python as follows:
5965

6066
You can read Python tests in `symengine/tests` to see what features are
6167
implemented.
68+
69+
70+
## License
71+
72+
symengine.py is MIT licensed and uses several LGPL, BSD-3 and MIT licensed libraries
73+
74+
Licenses for the dependencies of pip wheels are as follows,
75+
76+
pip wheels on Unix use GMP (LGPL v3), MPFR (LGPL v3), MPC (LGPL v3) and LLVM (NCSA), symengine (MIT + BSD-3)
77+
pip wheels on Windows use MPIR (LGPL v3) and symengine (MIT + BSD-3)
78+
Numpy (BSD-3) and SymPy (BSD-3) are optional dependencies
79+
Sources for these binary dependencies can be found on https://github.com/symengine/symengine-wheels/releases
80+

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,10 +222,15 @@ def finalize_options(self):
222222
long_description = '''
223223
SymEngine is a standalone fast C++ symbolic manipulation library.
224224
Optional thin Python wrappers (SymEngine) allow easy usage from Python and
225-
integration with SymPy and Sage.'''
225+
integration with SymPy and Sage.
226+
227+
See https://github.com/symengine/symengine.py for information about License
228+
and dependencies of wheels
229+
230+
'''
226231

227232
setup(name="symengine",
228-
version="0.2.1.dev",
233+
version="0.3.0.rc0",
229234
description="Python library providing wrappers to SymEngine",
230235
setup_requires=['cython>=0.19.1'],
231236
long_description=long_description,

symengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def f(*inner_args):
3333
return f
3434

3535

36-
__version__ = "0.2.1.dev"
36+
__version__ = "0.3.0.rc0"
3737

3838

3939
def test():

0 commit comments

Comments
 (0)