Skip to content

Commit 88b52c5

Browse files
committed
switch to absolute import statements
1 parent f766734 commit 88b52c5

File tree

6 files changed

+16
-486
lines changed

6 files changed

+16
-486
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pip install mathflow
1414
**Have Questions? Take a look at the Q&A:**
1515
[Questions & Answers: Addressing Potential Concerns](docs/QA.md)
1616

17-
## ✨ Key Features
17+
## ✨ Key Features
1818

1919
- **🔒 Operative Closure**: Mathematical operations return new Expression objects by default, maintaining functional programming principles
2020
- **⚡ Mutability Control**: Choose between immutable (default) and mutable expressions for different workflows

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "mathflow"
7-
version = "0.1.1"
7+
version = "0.1.2"
88
description = "A Pythonic Interface for Symbolic and Numerical Mathematics"
99
readme = "README.md"
1010
license = 'MIT'

src/mathflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,5 @@
9696
- x1, x2 = symbols('x1 x2')
9797
- Basic.free_symbols # property gives us the free symbols of an expression
9898
"""
99-
from core import Expression, Polynomial, Rational, Function
99+
from mathflow.core import Expression, Polynomial, Rational, Function
100100
from sympy import abc

0 commit comments

Comments
 (0)