Skip to content

Commit

Permalink
for release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gutow committed Aug 14, 2024
1 parent 4a0b768 commit 25d2dde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,9 @@ github](https://github.com/gutow/Algebra_with_Sympy/issues).

## Change Log
<a class="anchor" href="#change-log"></a>
* 1.1.2 (August 13, 2024)
* Test updates.
* Verified compatibility with Sympy 1.13.2.
* 1.1.1 (July 25, 2024)
* BUG FIX accommodate empty re.search results in preparser. Prevents
unnecessary error messages.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_algebraic_equation.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_helper_functions():
tsteqn = Equation(a, b/c)
raises(ValueError, lambda: integrate(tsteqn, c))
raises(AttributeError, lambda: integrate(tsteqn, c, side='right'))
assert tsteqn.evalf(4, {b: 2.0, c: 4}) == Equation(a, 0.5000)
assert tsteqn.evalf(4, {b: 2.0, c: 4}) == Equation(a, 0.5000).n(4)
assert diff(tsteqn, c) == Equation(diff(a, c, evaluate=False), -b/c**2)
tsteqn = Equation(a*c, b/c)
assert diff(tsteqn, c) == Equation(a, -b/c**2)
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.1'
__version__ = '1.1.2'

0 comments on commit 25d2dde

Please sign in to comment.