passagemath-fricas 10.5.34__tar.gz → 10.5.36__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.
- {passagemath_fricas-10.5.34/passagemath_fricas.egg-info → passagemath_fricas-10.5.36}/PKG-INFO +42 -5
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/README.rst +38 -1
- passagemath_fricas-10.5.36/VERSION.txt +1 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36/passagemath_fricas.egg-info}/PKG-INFO +42 -5
- passagemath_fricas-10.5.36/passagemath_fricas.egg-info/requires.txt +6 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/pyproject.toml +7 -7
- passagemath_fricas-10.5.34/VERSION.txt +0 -1
- passagemath_fricas-10.5.34/passagemath_fricas.egg-info/requires.txt +0 -6
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/MANIFEST.in +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/passagemath_fricas.egg-info/SOURCES.txt +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/passagemath_fricas.egg-info/dependency_links.txt +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/passagemath_fricas.egg-info/top_level.txt +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/all__sagemath_fricas.py +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/interfaces/all__sagemath_fricas.py +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/interfaces/fricas.py +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/libs/all__sagemath_fricas.py +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/libs/fricas.pyx +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/symbolic/all__sagemath_fricas.py +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/symbolic/expression_conversion_fricas.py +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/setup.cfg +0 -0
- {passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/setup.py +0 -0
{passagemath_fricas-10.5.34/passagemath_fricas.egg-info → passagemath_fricas-10.5.36}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: passagemath-fricas
|
3
|
-
Version: 10.5.
|
3
|
+
Version: 10.5.36
|
4
4
|
Summary: passagemath: Symbolic computation with the general purpose computer algebra system FriCAS
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
@@ -30,10 +30,10 @@ Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
30
30
|
Requires-Python: <3.14,>=3.9
|
31
31
|
Description-Content-Type: text/x-rst
|
32
32
|
Requires-Dist: cysignals==1.12.0rc2
|
33
|
-
Requires-Dist: passagemath-categories~=10.5.
|
33
|
+
Requires-Dist: passagemath-categories~=10.5.36.0
|
34
34
|
Provides-Extra: test
|
35
|
-
Requires-Dist: passagemath-repl~=10.5.
|
36
|
-
Requires-Dist: passagemath-symbolics~=10.5.
|
35
|
+
Requires-Dist: passagemath-repl~=10.5.36.0; extra == "test"
|
36
|
+
Requires-Dist: passagemath-symbolics~=10.5.36.0; extra == "test"
|
37
37
|
|
38
38
|
=========================================================================================
|
39
39
|
passagemath: Symbolic computation with the general purpose computer algebra system FriCAS
|
@@ -84,4 +84,41 @@ so compilation from source is triggered for those.
|
|
84
84
|
About this pip-installable distribution package
|
85
85
|
-----------------------------------------------
|
86
86
|
|
87
|
-
This pip-installable
|
87
|
+
This pip-installable distribution ``passagemath-fricas`` provides an interface
|
88
|
+
to `FriCAS <https://github.com/fricas/fricas>`_, the general purpose computer
|
89
|
+
algebra system.
|
90
|
+
|
91
|
+
|
92
|
+
What is included
|
93
|
+
----------------
|
94
|
+
|
95
|
+
- `Python interface to FriCAS <https://doc.sagemath.org/html/en/reference/interfaces/sage/interfaces/fricas.html>`_
|
96
|
+
|
97
|
+
- Raw access to the FriCAS executable from Python using `sage.features.fricas <https://doc.sagemath.org/html/en/reference/spkg/sage/features/fricas.html>`_
|
98
|
+
|
99
|
+
- Binary wheels on PyPI contain prebuilt copies of FriCAS.
|
100
|
+
|
101
|
+
|
102
|
+
Examples
|
103
|
+
--------
|
104
|
+
|
105
|
+
Starting FriCAS from the command line::
|
106
|
+
|
107
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" sage -sh -c fricas
|
108
|
+
|
109
|
+
Finding the installation location of a FriCAS in Python::
|
110
|
+
|
111
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" ipython
|
112
|
+
|
113
|
+
In [1]: from sage.features.fricas import FriCAS
|
114
|
+
|
115
|
+
In [2]: FriCAS().absolute_filename()
|
116
|
+
Out[2]: '.../bin/fricas'
|
117
|
+
|
118
|
+
Using the pexpect interface to FriCAS::
|
119
|
+
|
120
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" python
|
121
|
+
|
122
|
+
>>> from sage.interfaces.fricas import fricas
|
123
|
+
>>> fricas('1+1')
|
124
|
+
2
|
@@ -47,4 +47,41 @@ so compilation from source is triggered for those.
|
|
47
47
|
About this pip-installable distribution package
|
48
48
|
-----------------------------------------------
|
49
49
|
|
50
|
-
This pip-installable
|
50
|
+
This pip-installable distribution ``passagemath-fricas`` provides an interface
|
51
|
+
to `FriCAS <https://github.com/fricas/fricas>`_, the general purpose computer
|
52
|
+
algebra system.
|
53
|
+
|
54
|
+
|
55
|
+
What is included
|
56
|
+
----------------
|
57
|
+
|
58
|
+
- `Python interface to FriCAS <https://doc.sagemath.org/html/en/reference/interfaces/sage/interfaces/fricas.html>`_
|
59
|
+
|
60
|
+
- Raw access to the FriCAS executable from Python using `sage.features.fricas <https://doc.sagemath.org/html/en/reference/spkg/sage/features/fricas.html>`_
|
61
|
+
|
62
|
+
- Binary wheels on PyPI contain prebuilt copies of FriCAS.
|
63
|
+
|
64
|
+
|
65
|
+
Examples
|
66
|
+
--------
|
67
|
+
|
68
|
+
Starting FriCAS from the command line::
|
69
|
+
|
70
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" sage -sh -c fricas
|
71
|
+
|
72
|
+
Finding the installation location of a FriCAS in Python::
|
73
|
+
|
74
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" ipython
|
75
|
+
|
76
|
+
In [1]: from sage.features.fricas import FriCAS
|
77
|
+
|
78
|
+
In [2]: FriCAS().absolute_filename()
|
79
|
+
Out[2]: '.../bin/fricas'
|
80
|
+
|
81
|
+
Using the pexpect interface to FriCAS::
|
82
|
+
|
83
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" python
|
84
|
+
|
85
|
+
>>> from sage.interfaces.fricas import fricas
|
86
|
+
>>> fricas('1+1')
|
87
|
+
2
|
@@ -0,0 +1 @@
|
|
1
|
+
10.5.36
|
{passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36/passagemath_fricas.egg-info}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: passagemath-fricas
|
3
|
-
Version: 10.5.
|
3
|
+
Version: 10.5.36
|
4
4
|
Summary: passagemath: Symbolic computation with the general purpose computer algebra system FriCAS
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
@@ -30,10 +30,10 @@ Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
30
30
|
Requires-Python: <3.14,>=3.9
|
31
31
|
Description-Content-Type: text/x-rst
|
32
32
|
Requires-Dist: cysignals==1.12.0rc2
|
33
|
-
Requires-Dist: passagemath-categories~=10.5.
|
33
|
+
Requires-Dist: passagemath-categories~=10.5.36.0
|
34
34
|
Provides-Extra: test
|
35
|
-
Requires-Dist: passagemath-repl~=10.5.
|
36
|
-
Requires-Dist: passagemath-symbolics~=10.5.
|
35
|
+
Requires-Dist: passagemath-repl~=10.5.36.0; extra == "test"
|
36
|
+
Requires-Dist: passagemath-symbolics~=10.5.36.0; extra == "test"
|
37
37
|
|
38
38
|
=========================================================================================
|
39
39
|
passagemath: Symbolic computation with the general purpose computer algebra system FriCAS
|
@@ -84,4 +84,41 @@ so compilation from source is triggered for those.
|
|
84
84
|
About this pip-installable distribution package
|
85
85
|
-----------------------------------------------
|
86
86
|
|
87
|
-
This pip-installable
|
87
|
+
This pip-installable distribution ``passagemath-fricas`` provides an interface
|
88
|
+
to `FriCAS <https://github.com/fricas/fricas>`_, the general purpose computer
|
89
|
+
algebra system.
|
90
|
+
|
91
|
+
|
92
|
+
What is included
|
93
|
+
----------------
|
94
|
+
|
95
|
+
- `Python interface to FriCAS <https://doc.sagemath.org/html/en/reference/interfaces/sage/interfaces/fricas.html>`_
|
96
|
+
|
97
|
+
- Raw access to the FriCAS executable from Python using `sage.features.fricas <https://doc.sagemath.org/html/en/reference/spkg/sage/features/fricas.html>`_
|
98
|
+
|
99
|
+
- Binary wheels on PyPI contain prebuilt copies of FriCAS.
|
100
|
+
|
101
|
+
|
102
|
+
Examples
|
103
|
+
--------
|
104
|
+
|
105
|
+
Starting FriCAS from the command line::
|
106
|
+
|
107
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" sage -sh -c fricas
|
108
|
+
|
109
|
+
Finding the installation location of a FriCAS in Python::
|
110
|
+
|
111
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" ipython
|
112
|
+
|
113
|
+
In [1]: from sage.features.fricas import FriCAS
|
114
|
+
|
115
|
+
In [2]: FriCAS().absolute_filename()
|
116
|
+
Out[2]: '.../bin/fricas'
|
117
|
+
|
118
|
+
Using the pexpect interface to FriCAS::
|
119
|
+
|
120
|
+
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-fricas[test]" python
|
121
|
+
|
122
|
+
>>> from sage.interfaces.fricas import fricas
|
123
|
+
>>> fricas('1+1')
|
124
|
+
2
|
@@ -4,10 +4,10 @@
|
|
4
4
|
requires = [
|
5
5
|
'setuptools >= 68.1.1',
|
6
6
|
'pkgconfig',
|
7
|
-
'passagemath-setup ~= 10.5.
|
8
|
-
'passagemath-categories ~= 10.5.
|
9
|
-
'passagemath-environment ~= 10.5.
|
10
|
-
'passagemath-objects ~= 10.5.
|
7
|
+
'passagemath-setup ~= 10.5.36.0',
|
8
|
+
'passagemath-categories ~= 10.5.36.0',
|
9
|
+
'passagemath-environment ~= 10.5.36.0',
|
10
|
+
'passagemath-objects ~= 10.5.36.0',
|
11
11
|
'cython >=3.0, != 3.0.3, <4.0', 'cython >=3.0.8,<3.1.0',
|
12
12
|
'cysignals ==1.12.0rc2',
|
13
13
|
]
|
@@ -18,7 +18,7 @@ name = "passagemath-fricas"
|
|
18
18
|
description = "passagemath: Symbolic computation with the general purpose computer algebra system FriCAS"
|
19
19
|
dependencies = [
|
20
20
|
'cysignals ==1.12.0rc2',
|
21
|
-
'passagemath-categories ~= 10.5.
|
21
|
+
'passagemath-categories ~= 10.5.36.0',
|
22
22
|
]
|
23
23
|
dynamic = ["version"]
|
24
24
|
license = {text = "GNU General Public License (GPL) v2 or later"}
|
@@ -61,8 +61,8 @@ content-type = "text/x-rst"
|
|
61
61
|
|
62
62
|
[project.optional-dependencies]
|
63
63
|
test = [
|
64
|
-
'passagemath-repl ~= 10.5.
|
65
|
-
'passagemath-symbolics ~= 10.5.
|
64
|
+
'passagemath-repl ~= 10.5.36.0',
|
65
|
+
'passagemath-symbolics ~= 10.5.36.0',
|
66
66
|
]
|
67
67
|
|
68
68
|
[tool.cibuildwheel.linux]
|
@@ -1 +0,0 @@
|
|
1
|
-
10.5.34
|
File without changes
|
{passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/passagemath_fricas.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/passagemath_fricas.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
{passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/interfaces/all__sagemath_fricas.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{passagemath_fricas-10.5.34 → passagemath_fricas-10.5.36}/sage/symbolic/all__sagemath_fricas.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|