passagemath-gfan 10.6.1__tar.gz → 10.6.46__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.
Potentially problematic release.
This version of passagemath-gfan might be problematic. Click here for more details.
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/MANIFEST.in +4 -0
- {passagemath_gfan-10.6.1/passagemath_gfan.egg-info → passagemath_gfan-10.6.46}/PKG-INFO +10 -13
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/README.rst +5 -9
- passagemath_gfan-10.6.46/VERSION.txt +1 -0
- passagemath_gfan-10.6.46/passagemath_gfan/__init__.py +3 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46/passagemath_gfan.egg-info}/PKG-INFO +10 -13
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/passagemath_gfan.egg-info/SOURCES.txt +2 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/passagemath_gfan.egg-info/requires.txt +1 -1
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/pyproject.toml +11 -13
- passagemath_gfan-10.6.46/repair_wheel.py +26 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/setup.py +3 -1
- passagemath_gfan-10.6.1/VERSION.txt +0 -1
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/passagemath_gfan.egg-info/dependency_links.txt +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/passagemath_gfan.egg-info/top_level.txt +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/sage/all__sagemath_gfan.py +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/sage/interfaces/all__sagemath_gfan.py +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/sage/libs/all__sagemath_gfan.py +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/sage/libs/gfan.pyx +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/sage/rings/all__sagemath_gfan.py +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/sage/rings/polynomial/all__sagemath_gfan.py +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/sage/rings/polynomial/groebner_fan.py +0 -0
- {passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/setup.cfg +0 -0
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
graft passagemath_gfan
|
|
2
|
+
|
|
1
3
|
prune sage
|
|
2
4
|
|
|
3
5
|
include VERSION.txt
|
|
@@ -11,6 +13,8 @@ global-exclude *.cpp
|
|
|
11
13
|
global-exclude all__sagemath_*.py
|
|
12
14
|
global-include all__sagemath_gfan.py
|
|
13
15
|
|
|
16
|
+
include repair_wheel.py
|
|
17
|
+
|
|
14
18
|
global-exclude __pycache__
|
|
15
19
|
global-exclude *.py[co]
|
|
16
20
|
global-exclude *.bak
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: passagemath-gfan
|
|
3
|
-
Version: 10.6.
|
|
3
|
+
Version: 10.6.46
|
|
4
4
|
Summary: passagemath: Groebner fans and tropical varieties with gfan
|
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
|
@@ -8,7 +8,7 @@ License-Expression: GPL-2.0-or-later
|
|
|
8
8
|
Project-URL: release notes, https://github.com/passagemath/passagemath/releases
|
|
9
9
|
Project-URL: repo (upstream), https://github.com/sagemath/sage
|
|
10
10
|
Project-URL: repo, https://github.com/passagemath/passagemath
|
|
11
|
-
Project-URL: documentation, https://
|
|
11
|
+
Project-URL: documentation, https://passagemath.org/docs/latest
|
|
12
12
|
Project-URL: homepage (upstream), https://www.sagemath.org
|
|
13
13
|
Project-URL: discourse, https://passagemath.discourse.group
|
|
14
14
|
Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
|
|
@@ -24,11 +24,12 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
29
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
29
|
-
Requires-Python: <3.
|
|
30
|
+
Requires-Python: <3.15,>=3.10
|
|
30
31
|
Description-Content-Type: text/x-rst
|
|
31
|
-
Requires-Dist: cysignals
|
|
32
|
+
Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
|
|
32
33
|
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
|
33
34
|
Provides-Extra: test
|
|
34
35
|
Requires-Dist: passagemath-polyhedra; extra == "test"
|
|
@@ -63,33 +64,29 @@ It was created in October 2024 with the following goals:
|
|
|
63
64
|
- inviting collaborations with upstream projects,
|
|
64
65
|
- `building a professional, respectful, inclusive
|
|
65
66
|
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
66
|
-
- `
|
|
67
|
-
<https://github.com/passagemath/passagemath/issues/248
|
|
67
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
68
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
68
69
|
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
69
70
|
serverless deployment with Javascript,
|
|
70
71
|
- developing a native Windows port.
|
|
71
72
|
|
|
72
|
-
`Full documentation <https://
|
|
73
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
73
74
|
available online.
|
|
74
75
|
|
|
75
76
|
passagemath attempts to support and provides binary wheels suitable for
|
|
76
77
|
all major Linux distributions and recent versions of macOS.
|
|
77
78
|
|
|
78
|
-
For the Linux aarch64 (ARM) platform, some third-party packages are still missing wheels;
|
|
79
|
-
see ` <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__
|
|
80
|
-
for instructions for building them from source.
|
|
81
|
-
|
|
82
79
|
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
83
80
|
the passagemath distributions. Use of the full functionality of passagemath
|
|
84
81
|
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
85
82
|
or virtualization.
|
|
86
83
|
|
|
87
|
-
The supported Python versions in the passagemath 10.6.x series are 3.
|
|
84
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
|
|
88
85
|
|
|
89
86
|
|
|
90
87
|
About this pip-installable distribution package
|
|
91
88
|
-----------------------------------------------
|
|
92
89
|
|
|
93
|
-
This pip-installable
|
|
90
|
+
This pip-installable distribution ``passagemath-gfan`` provides an interface to
|
|
94
91
|
`gfan <https://users-math.au.dk/jensen/software/gfan/gfan.html>`_, the package for
|
|
95
92
|
Groebner fans and tropical varieties.
|
|
@@ -27,33 +27,29 @@ It was created in October 2024 with the following goals:
|
|
|
27
27
|
- inviting collaborations with upstream projects,
|
|
28
28
|
- `building a professional, respectful, inclusive
|
|
29
29
|
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
30
|
-
- `
|
|
31
|
-
<https://github.com/passagemath/passagemath/issues/248
|
|
30
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
31
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
32
32
|
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
33
33
|
serverless deployment with Javascript,
|
|
34
34
|
- developing a native Windows port.
|
|
35
35
|
|
|
36
|
-
`Full documentation <https://
|
|
36
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
37
37
|
available online.
|
|
38
38
|
|
|
39
39
|
passagemath attempts to support and provides binary wheels suitable for
|
|
40
40
|
all major Linux distributions and recent versions of macOS.
|
|
41
41
|
|
|
42
|
-
For the Linux aarch64 (ARM) platform, some third-party packages are still missing wheels;
|
|
43
|
-
see ` <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__
|
|
44
|
-
for instructions for building them from source.
|
|
45
|
-
|
|
46
42
|
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
47
43
|
the passagemath distributions. Use of the full functionality of passagemath
|
|
48
44
|
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
49
45
|
or virtualization.
|
|
50
46
|
|
|
51
|
-
The supported Python versions in the passagemath 10.6.x series are 3.
|
|
47
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
|
|
52
48
|
|
|
53
49
|
|
|
54
50
|
About this pip-installable distribution package
|
|
55
51
|
-----------------------------------------------
|
|
56
52
|
|
|
57
|
-
This pip-installable
|
|
53
|
+
This pip-installable distribution ``passagemath-gfan`` provides an interface to
|
|
58
54
|
`gfan <https://users-math.au.dk/jensen/software/gfan/gfan.html>`_, the package for
|
|
59
55
|
Groebner fans and tropical varieties.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
10.6.46
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: passagemath-gfan
|
|
3
|
-
Version: 10.6.
|
|
3
|
+
Version: 10.6.46
|
|
4
4
|
Summary: passagemath: Groebner fans and tropical varieties with gfan
|
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
|
@@ -8,7 +8,7 @@ License-Expression: GPL-2.0-or-later
|
|
|
8
8
|
Project-URL: release notes, https://github.com/passagemath/passagemath/releases
|
|
9
9
|
Project-URL: repo (upstream), https://github.com/sagemath/sage
|
|
10
10
|
Project-URL: repo, https://github.com/passagemath/passagemath
|
|
11
|
-
Project-URL: documentation, https://
|
|
11
|
+
Project-URL: documentation, https://passagemath.org/docs/latest
|
|
12
12
|
Project-URL: homepage (upstream), https://www.sagemath.org
|
|
13
13
|
Project-URL: discourse, https://passagemath.discourse.group
|
|
14
14
|
Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
|
|
@@ -24,11 +24,12 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
29
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
29
|
-
Requires-Python: <3.
|
|
30
|
+
Requires-Python: <3.15,>=3.10
|
|
30
31
|
Description-Content-Type: text/x-rst
|
|
31
|
-
Requires-Dist: cysignals
|
|
32
|
+
Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
|
|
32
33
|
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
|
33
34
|
Provides-Extra: test
|
|
34
35
|
Requires-Dist: passagemath-polyhedra; extra == "test"
|
|
@@ -63,33 +64,29 @@ It was created in October 2024 with the following goals:
|
|
|
63
64
|
- inviting collaborations with upstream projects,
|
|
64
65
|
- `building a professional, respectful, inclusive
|
|
65
66
|
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
66
|
-
- `
|
|
67
|
-
<https://github.com/passagemath/passagemath/issues/248
|
|
67
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
68
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
68
69
|
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
69
70
|
serverless deployment with Javascript,
|
|
70
71
|
- developing a native Windows port.
|
|
71
72
|
|
|
72
|
-
`Full documentation <https://
|
|
73
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
73
74
|
available online.
|
|
74
75
|
|
|
75
76
|
passagemath attempts to support and provides binary wheels suitable for
|
|
76
77
|
all major Linux distributions and recent versions of macOS.
|
|
77
78
|
|
|
78
|
-
For the Linux aarch64 (ARM) platform, some third-party packages are still missing wheels;
|
|
79
|
-
see ` <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__
|
|
80
|
-
for instructions for building them from source.
|
|
81
|
-
|
|
82
79
|
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
83
80
|
the passagemath distributions. Use of the full functionality of passagemath
|
|
84
81
|
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
85
82
|
or virtualization.
|
|
86
83
|
|
|
87
|
-
The supported Python versions in the passagemath 10.6.x series are 3.
|
|
84
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
|
|
88
85
|
|
|
89
86
|
|
|
90
87
|
About this pip-installable distribution package
|
|
91
88
|
-----------------------------------------------
|
|
92
89
|
|
|
93
|
-
This pip-installable
|
|
90
|
+
This pip-installable distribution ``passagemath-gfan`` provides an interface to
|
|
94
91
|
`gfan <https://users-math.au.dk/jensen/software/gfan/gfan.html>`_, the package for
|
|
95
92
|
Groebner fans and tropical varieties.
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
# Generated by SAGE_ROOT/bootstrap; do not edit
|
|
2
1
|
[build-system]
|
|
3
2
|
# Minimum requirements for the build system to execute.
|
|
4
3
|
requires = [
|
|
5
4
|
'setuptools >= 77.0.0',
|
|
6
5
|
'pkgconfig',
|
|
7
|
-
'passagemath-
|
|
8
|
-
'passagemath-
|
|
9
|
-
'
|
|
10
|
-
'
|
|
6
|
+
'passagemath-conf ~= 10.6.46.0 ; sys_platform != "win32"',
|
|
7
|
+
'passagemath-setup ~= 10.6.46.0',
|
|
8
|
+
'passagemath-environment ~= 10.6.46.0',
|
|
9
|
+
'cython >=3.0.8, <3.3.0', 'cython >=3.0.8,<3.3.0',
|
|
10
|
+
'cysignals !=1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
|
|
11
11
|
]
|
|
12
12
|
build-backend = "setuptools.build_meta"
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ build-backend = "setuptools.build_meta"
|
|
|
15
15
|
name = "passagemath-gfan"
|
|
16
16
|
description = "passagemath: Groebner fans and tropical varieties with gfan"
|
|
17
17
|
dependencies = [
|
|
18
|
-
'cysignals
|
|
18
|
+
'cysignals !=1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
|
|
19
19
|
]
|
|
20
20
|
dynamic = ["version"]
|
|
21
21
|
license = "GPL-2.0-or-later"
|
|
@@ -36,16 +36,17 @@ classifiers = [
|
|
|
36
36
|
"Programming Language :: Python :: 3.11",
|
|
37
37
|
"Programming Language :: Python :: 3.12",
|
|
38
38
|
"Programming Language :: Python :: 3.13",
|
|
39
|
+
"Programming Language :: Python :: 3.14",
|
|
39
40
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
40
41
|
"Topic :: Scientific/Engineering :: Mathematics",
|
|
41
42
|
]
|
|
42
|
-
requires-python = ">=3.10, <3.
|
|
43
|
+
requires-python = ">=3.10, <3.15"
|
|
43
44
|
|
|
44
45
|
[project.urls]
|
|
45
46
|
"release notes" = "https://github.com/passagemath/passagemath/releases"
|
|
46
47
|
"repo (upstream)" = "https://github.com/sagemath/sage"
|
|
47
48
|
"repo" = "https://github.com/passagemath/passagemath"
|
|
48
|
-
documentation = "https://
|
|
49
|
+
documentation = "https://passagemath.org/docs/latest"
|
|
49
50
|
"homepage (upstream)" = "https://www.sagemath.org"
|
|
50
51
|
"discourse" = "https://passagemath.discourse.group"
|
|
51
52
|
"tracker (upstream)" = "https://github.com/sagemath/sage/issues"
|
|
@@ -62,18 +63,15 @@ test = [
|
|
|
62
63
|
]
|
|
63
64
|
|
|
64
65
|
[tool.cibuildwheel.linux]
|
|
65
|
-
# Unfortunately CIBW_REPAIR_WHEEL_COMMAND does not expand {project} (and other placeholders),
|
|
66
|
-
# so there is no clean way to refer to the repair_wheel.py script
|
|
67
|
-
# https://github.com/pypa/cibuildwheel/issues/1931
|
|
68
66
|
repair-wheel-command = [
|
|
69
67
|
'python3 -m pip install passagemath-conf auditwheel',
|
|
70
|
-
'python3
|
|
68
|
+
'python3 {package}/repair_wheel.py {wheel}',
|
|
71
69
|
'auditwheel repair -w {dest_dir} {wheel}',
|
|
72
70
|
]
|
|
73
71
|
[tool.cibuildwheel.macos]
|
|
74
72
|
repair-wheel-command = [
|
|
75
73
|
'python3 -m pip install passagemath-conf auditwheel',
|
|
76
|
-
'python3
|
|
74
|
+
'python3 {package}/repair_wheel.py {wheel}',
|
|
77
75
|
'delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}',
|
|
78
76
|
]
|
|
79
77
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Add data to the wheel
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
import shlex
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
from pathlib import Path
|
|
8
|
+
|
|
9
|
+
from auditwheel.wheeltools import InWheel
|
|
10
|
+
|
|
11
|
+
from sage_conf import SAGE_LOCAL
|
|
12
|
+
|
|
13
|
+
if "TMPDIR" in os.environ:
|
|
14
|
+
os.environ["TMPDIR"] = str(Path(os.environ["TMPDIR"]).resolve())
|
|
15
|
+
|
|
16
|
+
wheel = Path(sys.argv[1])
|
|
17
|
+
|
|
18
|
+
# SAGE_LOCAL/bin/gfan --> sage_wheels/bin/gfan
|
|
19
|
+
# Do not include the symlinks -- they are expanded to copies in the wheel.
|
|
20
|
+
with InWheel(wheel, wheel):
|
|
21
|
+
command = f'set -o pipefail; (cd {shlex.quote(SAGE_LOCAL)} && tar cf - --dereference bin/gfan) | (mkdir -p sage_wheels && cd sage_wheels && tar xvf -)'
|
|
22
|
+
|
|
23
|
+
print(f'Running {command}')
|
|
24
|
+
sys.stdout.flush()
|
|
25
|
+
if os.system(f"bash -c {shlex.quote(command)}") != 0:
|
|
26
|
+
sys.exit(1)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
10.6.1
|
{passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/passagemath_gfan.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/passagemath_gfan.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{passagemath_gfan-10.6.1 → passagemath_gfan-10.6.46}/sage/rings/polynomial/all__sagemath_gfan.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|