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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: paramath3
3
- Version: 3.2.3
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:
@@ -35,7 +35,7 @@ import paramath3
35
35
  import_paramath_time = time.time() - last_time
36
36
  main_time = time.time()
37
37
 
38
- PROGRAM_VERSION = "3.2.3"
38
+ PROGRAM_VERSION = "3.2.4"
39
39
 
40
40
 
41
41
  def _supports_color(stream) -> bool:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: paramath3
3
- Version: 3.2.3
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)
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "paramath3"
7
- version = "3.2.3"
7
+ version = "3.2.4"
8
8
  description = "Paramath v3 compiler"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes
File without changes