Skip to content

Commit

Permalink
Upgrade sympy from 1.12 to 1.13.3 (pyodide#5098)
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarbenjamin authored Oct 6, 2024
1 parent 67a4aa7 commit d77b1ac
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/project/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ myst:
- Upgraded `contourpy` to 1.3.0 {pr}`5048`
- Upgraded `boost-histogram` to 1.5.0 {pr}`5074`
- Upgraded `duckdb` to 1.1.0 {pr}`5078`
- Upgraded `sympy` to 1.13.3 {pr}`5098`
- Added `casadi` 3.6.6 {pr}`4936`, {pr}`5057`
- Added `pyarrow` 17.0.0 {pr}`4950`
- Added `rasterio` 1.13.10, `affine` 2.4.0 {pr}`4983`
Expand Down
1 change: 1 addition & 0 deletions packages/python-flint/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ about:
extra:
recipe-maintainers:
- mkoeppe
- oscarbenjamin
9 changes: 6 additions & 3 deletions packages/sympy/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
package:
name: sympy
version: "1.12"
version: "1.13.3"
top-level:
- isympy
- sympy
requirements:
run:
- mpmath
source:
sha256: c3588cd4295d0c0f603d0f2ae780587e64e2efeedb3521e46b9bb1d08d184fa5
url: https://files.pythonhosted.org/packages/d2/05/e6600db80270777c4a64238a98d442f0fd07cc8915be2a1c16da7f2b9e74/sympy-1.12-py3-none-any.whl
sha256: 54612cf55a62755ee71824ce692986f23c88ffa77207b30c1368eda4a7060f73
url: https://files.pythonhosted.org/packages/99/ff/c87e0622b1dadea79d2fb0b25ade9ed98954c9033722eb707053d310d4f3/sympy-1.13.3-py3-none-any.whl
about:
home: https://sympy.org
PyPI: https://pypi.org/project/sympy
summary: Computer algebra system (CAS) in Python
license: BSD
extra:
recipe-maintainers:
- oscarbenjamin
4 changes: 4 additions & 0 deletions packages/sympy/test_sympy.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ def test_sympy(selenium):
c = sympy.sqrt(a**2 + b**2)

assert c.subs({a: 3, b: 4}) == 5

# Uses python-flint if installed
x = sympy.symbols("x")
assert (x**2 - 1).factor() == (x + 1) * (x - 1)

0 comments on commit d77b1ac

Please sign in to comment.