Skip to content

Commit fe4befc

Browse files
committed
Start of the 0.7.2 release cycle
1 parent 556fe55 commit fe4befc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

doc/api/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
# The short X.Y version.
4343
version = '0.7.1'
4444
# The full version, including alpha/beta/rc tags.
45-
release = '0.7.1'
45+
release = '0.7.1-git'
4646

4747
# There are two options for replacing |today|: either, you set today to some
4848
# non-false value, then it is used:

doc/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# The short X.Y version.
4949
version = '0.7.1'
5050
# The full version, including alpha/beta/rc tags.
51-
release = '0.7.1'
51+
release = '0.7.1-git'
5252

5353
# There are two options for replacing |today|: either, you set today to some
5454
# non-false value, then it is used:

doc/src/tutorial.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ defined the symbols x, y, z and some other things:
9696

9797
$ :input:`cd sympy`
9898
$ :input:`./bin/isympy`
99-
IPython console for SymPy 0.7.1 (Python 2.7.1) (ground types: gmpy)
99+
IPython console for SymPy 0.7.1-git (Python 2.7.1) (ground types: gmpy)
100100

101101
These commands were executed:
102102
>>> from __future__ import division

sympy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
http://code.google.com/p/sympy/"""
1111

12-
__version__ = "0.7.1"
12+
__version__ = "0.7.1-git"
1313

1414
def __sympy_debug():
1515
# helper function so we don't import os globally

sympy/utilities/tests/test_codegen.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def test_empty_c_code_with_comment():
6060
assert source[:82] == (
6161
"/******************************************************************************\n *"
6262
)
63-
# " Code generated with sympy 0.7.1 "
63+
# " Code generated with sympy 0.7.1-git "
6464
assert source[158:] == ( "*\n"
6565
" * *\n"
6666
" * See http://www.sympy.org/ for more information. *\n"
@@ -443,7 +443,7 @@ def test_empty_f_code_with_header():
443443
assert source[:82] == (
444444
"!******************************************************************************\n!*"
445445
)
446-
# " Code generated with sympy 0.7.1 "
446+
# " Code generated with sympy 0.7.1-git "
447447
assert source[158:] == ( "*\n"
448448
"!* *\n"
449449
"!* See http://www.sympy.org/ for more information. *\n"

0 commit comments

Comments
 (0)