Skip to content

Commit

Permalink
SymPy 0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Jul 30, 2011
1 parent a00a8e5 commit 556fe55
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/api/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
# The short X.Y version.
version = '0.7.1'
# The full version, including alpha/beta/rc tags.
release = '0.7.1.rc1'
release = '0.7.1'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down
2 changes: 1 addition & 1 deletion doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# The short X.Y version.
version = '0.7.1'
# The full version, including alpha/beta/rc tags.
release = '0.7.1.rc1'
release = '0.7.1'

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down
2 changes: 1 addition & 1 deletion doc/src/tutorial.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ defined the symbols x, y, z and some other things:

$ :input:`cd sympy`
$ :input:`./bin/isympy`
IPython console for SymPy 0.7.1.rc1 (Python 2.7.1) (ground types: gmpy)
IPython console for SymPy 0.7.1 (Python 2.7.1) (ground types: gmpy)

These commands were executed:
>>> from __future__ import division
Expand Down
2 changes: 1 addition & 1 deletion sympy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
http:https://code.google.com/p/sympy/"""

__version__ = "0.7.1.rc1"
__version__ = "0.7.1"

def __sympy_debug():
# helper function so we don't import os globally
Expand Down
4 changes: 2 additions & 2 deletions sympy/utilities/tests/test_codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_empty_c_code_with_comment():
assert source[:82] == (
"/******************************************************************************\n *"
)
# " Code generated with sympy 0.7.1.rc1 "
# " Code generated with sympy 0.7.1 "
assert source[158:] == ( "*\n"
" * *\n"
" * See http:https://www.sympy.org/ for more information. *\n"
Expand Down Expand Up @@ -443,7 +443,7 @@ def test_empty_f_code_with_header():
assert source[:82] == (
"!******************************************************************************\n!*"
)
# " Code generated with sympy 0.7.1.rc1 "
# " Code generated with sympy 0.7.1 "
assert source[158:] == ( "*\n"
"!* *\n"
"!* See http:https://www.sympy.org/ for more information. *\n"
Expand Down

0 comments on commit 556fe55

Please sign in to comment.