paramath3 3.2.3__tar.gz → 3.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {paramath3-3.2.3/paramath3.egg-info → paramath3-3.2.4}/PKG-INFO +13 -1
- {paramath3-3.2.3 → paramath3-3.2.4}/README.md +12 -0
- {paramath3-3.2.3 → paramath3-3.2.4}/cli.py +1 -1
- {paramath3-3.2.3 → paramath3-3.2.4/paramath3.egg-info}/PKG-INFO +13 -1
- {paramath3-3.2.3 → paramath3-3.2.4}/paramath3.py +2 -1
- {paramath3-3.2.3 → paramath3-3.2.4}/pyproject.toml +1 -1
- {paramath3-3.2.3 → paramath3-3.2.4}/LICENSE +0 -0
- {paramath3-3.2.3 → paramath3-3.2.4}/colors.py +0 -0
- {paramath3-3.2.3 → paramath3-3.2.4}/paramath3.egg-info/SOURCES.txt +0 -0
- {paramath3-3.2.3 → paramath3-3.2.4}/paramath3.egg-info/dependency_links.txt +0 -0
- {paramath3-3.2.3 → paramath3-3.2.4}/paramath3.egg-info/entry_points.txt +0 -0
- {paramath3-3.2.3 → paramath3-3.2.4}/paramath3.egg-info/requires.txt +0 -0
- {paramath3-3.2.3 → paramath3-3.2.4}/paramath3.egg-info/top_level.txt +0 -0
- {paramath3-3.2.3 → paramath3-3.2.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paramath3
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.4
|
|
4
4
|
Summary: Paramath v3 compiler
|
|
5
5
|
Author: Kaemori Yozzan
|
|
6
6
|
License-Expression: MIT
|
|
@@ -68,10 +68,22 @@ pipx ensurepath
|
|
|
68
68
|
|
|
69
69
|
Restart your shell, then install Paramath:
|
|
70
70
|
|
|
71
|
+
```bash
|
|
72
|
+
pipx install paramath3[full]
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
To install without optional dependencies:
|
|
76
|
+
|
|
71
77
|
```bash
|
|
72
78
|
pipx install paramath3
|
|
73
79
|
```
|
|
74
80
|
|
|
81
|
+
To add optional dependencies to an existing pipx installation:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
pipx inject paramath3 sympy tqdm
|
|
85
|
+
```
|
|
86
|
+
|
|
75
87
|
### Method 2 (Direct Git Clone)
|
|
76
88
|
|
|
77
89
|
Clone the repository:
|
|
@@ -48,10 +48,22 @@ pipx ensurepath
|
|
|
48
48
|
|
|
49
49
|
Restart your shell, then install Paramath:
|
|
50
50
|
|
|
51
|
+
```bash
|
|
52
|
+
pipx install paramath3[full]
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
To install without optional dependencies:
|
|
56
|
+
|
|
51
57
|
```bash
|
|
52
58
|
pipx install paramath3
|
|
53
59
|
```
|
|
54
60
|
|
|
61
|
+
To add optional dependencies to an existing pipx installation:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pipx inject paramath3 sympy tqdm
|
|
65
|
+
```
|
|
66
|
+
|
|
55
67
|
### Method 2 (Direct Git Clone)
|
|
56
68
|
|
|
57
69
|
Clone the repository:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: paramath3
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.4
|
|
4
4
|
Summary: Paramath v3 compiler
|
|
5
5
|
Author: Kaemori Yozzan
|
|
6
6
|
License-Expression: MIT
|
|
@@ -68,10 +68,22 @@ pipx ensurepath
|
|
|
68
68
|
|
|
69
69
|
Restart your shell, then install Paramath:
|
|
70
70
|
|
|
71
|
+
```bash
|
|
72
|
+
pipx install paramath3[full]
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
To install without optional dependencies:
|
|
76
|
+
|
|
71
77
|
```bash
|
|
72
78
|
pipx install paramath3
|
|
73
79
|
```
|
|
74
80
|
|
|
81
|
+
To add optional dependencies to an existing pipx installation:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
pipx inject paramath3 sympy tqdm
|
|
85
|
+
```
|
|
86
|
+
|
|
75
87
|
### Method 2 (Direct Git Clone)
|
|
76
88
|
|
|
77
89
|
Clone the repository:
|
|
@@ -2006,7 +2006,8 @@ def _apply_line_transforms(
|
|
|
2006
2006
|
import sympy # noqa: F401
|
|
2007
2007
|
except ImportError:
|
|
2008
2008
|
raise ImportError(
|
|
2009
|
-
"SymPy is required for sympy output. Please install it via 'pip install sympy'.
|
|
2009
|
+
"""SymPy is required for sympy output. Please install it via 'pip install sympy' if using pip.
|
|
2010
|
+
If using pipx, install sympy using 'pipx inject paramath3 sympy', or reinstall with: pipx install 'paramath3[full]'"""
|
|
2010
2011
|
) from None
|
|
2011
2012
|
|
|
2012
2013
|
expr_str = generate_expression(expr)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|