Skip to content

Commit

Permalink
SymPy 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Jun 28, 2011
1 parent 5c801b6 commit c9470ac
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
Expand Up @@ -42,7 +42,7 @@
# The short X.Y version.
version = '0.7.0'
# The full version, including alpha/beta/rc tags.
release = '0.7.0.rc2'
release = '0.7.0'

# 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
Expand Up @@ -42,7 +42,7 @@
# The short X.Y version.
version = '0.7.0'
# The full version, including alpha/beta/rc tags.
release = '0.7.0.rc2'
release = '0.7.0'

# 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
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.0.rc2 (Python 2.7.1) (ground types: gmpy)
IPython console for SymPy 0.7.0 (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
Expand Up @@ -9,7 +9,7 @@
http://code.google.com/p/sympy/"""

__version__ = "0.7.0.rc2"
__version__ = "0.7.0"

import sys
import warnings
Expand Down
4 changes: 2 additions & 2 deletions sympy/utilities/tests/test_codegen.py
Expand Up @@ -57,7 +57,7 @@ def test_empty_c_code_with_comment():
assert source[:82] == (
"/******************************************************************************\n *"
)
# " Code generated with sympy 0.7.0-rc2 "
# " Code generated with sympy 0.7.0 "
assert source[158:] == ( "*\n"
" * *\n"
" * See http://www.sympy.org/ for more information. *\n"
Expand Down Expand Up @@ -440,7 +440,7 @@ def test_empty_f_code_with_header():
assert source[:82] == (
"!******************************************************************************\n!*"
)
# " Code generated with sympy 0.7.0.rc2 "
# " Code generated with sympy 0.7.0 "
assert source[158:] == ( "*\n"
"!* *\n"
"!* See http://www.sympy.org/ for more information. *\n"
Expand Down

0 comments on commit c9470ac

Please sign in to comment.