passagemath-nauty 10.6.4__tar.gz → 10.6.45__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.
Files changed (19) hide show
  1. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/MANIFEST.in +4 -0
  2. {passagemath_nauty-10.6.4/passagemath_nauty.egg-info → passagemath_nauty-10.6.45}/PKG-INFO +9 -11
  3. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/README.rst +3 -6
  4. passagemath_nauty-10.6.45/VERSION.txt +1 -0
  5. passagemath_nauty-10.6.45/passagemath_nauty/__init__.py +3 -0
  6. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45/passagemath_nauty.egg-info}/PKG-INFO +9 -11
  7. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/passagemath_nauty.egg-info/SOURCES.txt +2 -0
  8. passagemath_nauty-10.6.45/passagemath_nauty.egg-info/requires.txt +9 -0
  9. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/pyproject.toml +12 -14
  10. passagemath_nauty-10.6.45/repair_wheel.py +25 -0
  11. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/setup.py +3 -1
  12. passagemath_nauty-10.6.4/VERSION.txt +0 -1
  13. passagemath_nauty-10.6.4/passagemath_nauty.egg-info/requires.txt +0 -9
  14. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/passagemath_nauty.egg-info/dependency_links.txt +0 -0
  15. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/passagemath_nauty.egg-info/top_level.txt +0 -0
  16. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/sage/all__sagemath_nauty.py +0 -0
  17. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/sage/libs/all__sagemath_nauty.py +0 -0
  18. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/sage/libs/nauty.pyx +0 -0
  19. {passagemath_nauty-10.6.4 → passagemath_nauty-10.6.45}/setup.cfg +0 -0
@@ -1,3 +1,5 @@
1
+ graft passagemath_nauty
2
+
1
3
  prune sage
2
4
 
3
5
  include VERSION.txt
@@ -10,6 +12,8 @@ global-exclude *.cpp
10
12
  global-exclude all__sagemath_*.py
11
13
  global-include all__sagemath_nauty.py
12
14
 
15
+ include repair_wheel.py
16
+
13
17
  global-exclude __pycache__
14
18
  global-exclude *.py[co]
15
19
  global-exclude *.bak
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-nauty
3
- Version: 10.6.4
3
+ Version: 10.6.45
4
4
  Summary: passagemath: Find automorphism groups of graphs, generate non-isomorphic graphs with nauty
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -24,14 +24,15 @@ 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.14,>=3.10
30
+ Requires-Python: <3.15,>=3.10
30
31
  Description-Content-Type: text/x-rst
31
- Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
32
+ Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
32
33
  Requires-Dist: cysignals!=1.12.0,>=1.11.2
33
- Requires-Dist: passagemath-environment~=10.6.4.0
34
- Requires-Dist: passagemath-graphs~=10.6.4.0
34
+ Requires-Dist: passagemath-environment~=10.6.45.0
35
+ Requires-Dist: passagemath-graphs~=10.6.45.0
35
36
  Provides-Extra: test
36
37
  Requires-Dist: passagemath-repl; extra == "test"
37
38
 
@@ -70,21 +71,18 @@ It was created in October 2024 with the following goals:
70
71
  serverless deployment with Javascript,
71
72
  - developing a native Windows port.
72
73
 
73
- `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
74
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
74
75
  available online.
75
76
 
76
77
  passagemath attempts to support and provides binary wheels suitable for
77
78
  all major Linux distributions and recent versions of macOS.
78
79
 
79
- For the Linux aarch64 (ARM) platform, some third-party packages are still missing
80
- wheels; see the `instructions for building them from source <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__.
81
-
82
80
  Binary wheels for native Windows (x86_64) are are available for a subset of
83
81
  the passagemath distributions. Use of the full functionality of passagemath
84
82
  on Windows currently requires the use of Windows Subsystem for Linux (WSL)
85
83
  or virtualization.
86
84
 
87
- The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
85
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
88
86
 
89
87
 
90
88
  About this pip-installable distribution package
@@ -140,7 +138,7 @@ Use with sage.graphs::
140
138
 
141
139
  $ pipx run --pip-args="--prefer-binary" --spec "passagemath-nauty[test]" ipython
142
140
 
143
- In [1]: from sage.all__sagemath_graphs import *
141
+ In [1]: from passagemath_graphs import *
144
142
 
145
143
  In [2]: gen = graphs.nauty_geng("7 -c") # connected graphs on 7 vertices
146
144
 
@@ -33,21 +33,18 @@ It was created in October 2024 with the following goals:
33
33
  serverless deployment with Javascript,
34
34
  - developing a native Windows port.
35
35
 
36
- `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
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
43
- wheels; see the `instructions for building them from source <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__.
44
-
45
42
  Binary wheels for native Windows (x86_64) are are available for a subset of
46
43
  the passagemath distributions. Use of the full functionality of passagemath
47
44
  on Windows currently requires the use of Windows Subsystem for Linux (WSL)
48
45
  or virtualization.
49
46
 
50
- The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
47
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
51
48
 
52
49
 
53
50
  About this pip-installable distribution package
@@ -103,7 +100,7 @@ Use with sage.graphs::
103
100
 
104
101
  $ pipx run --pip-args="--prefer-binary" --spec "passagemath-nauty[test]" ipython
105
102
 
106
- In [1]: from sage.all__sagemath_graphs import *
103
+ In [1]: from passagemath_graphs import *
107
104
 
108
105
  In [2]: gen = graphs.nauty_geng("7 -c") # connected graphs on 7 vertices
109
106
 
@@ -0,0 +1 @@
1
+ 10.6.45
@@ -0,0 +1,3 @@
1
+ # sage_setup: distribution = sagemath-nauty
2
+
3
+ from sage.all__sagemath_nauty import *
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: passagemath-nauty
3
- Version: 10.6.4
3
+ Version: 10.6.45
4
4
  Summary: passagemath: Find automorphism groups of graphs, generate non-isomorphic graphs with nauty
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -24,14 +24,15 @@ 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.14,>=3.10
30
+ Requires-Python: <3.15,>=3.10
30
31
  Description-Content-Type: text/x-rst
31
- Requires-Dist: cysignals<1.12.4; sys_platform == "win32"
32
+ Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
32
33
  Requires-Dist: cysignals!=1.12.0,>=1.11.2
33
- Requires-Dist: passagemath-environment~=10.6.4.0
34
- Requires-Dist: passagemath-graphs~=10.6.4.0
34
+ Requires-Dist: passagemath-environment~=10.6.45.0
35
+ Requires-Dist: passagemath-graphs~=10.6.45.0
35
36
  Provides-Extra: test
36
37
  Requires-Dist: passagemath-repl; extra == "test"
37
38
 
@@ -70,21 +71,18 @@ It was created in October 2024 with the following goals:
70
71
  serverless deployment with Javascript,
71
72
  - developing a native Windows port.
72
73
 
73
- `Full documentation <https://doc.sagemath.org/html/en/index.html>`__ is
74
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
74
75
  available online.
75
76
 
76
77
  passagemath attempts to support and provides binary wheels suitable for
77
78
  all major Linux distributions and recent versions of macOS.
78
79
 
79
- For the Linux aarch64 (ARM) platform, some third-party packages are still missing
80
- wheels; see the `instructions for building them from source <https://github.com/passagemath/passagemath?tab=readme-ov-file#full-installation-of-passagemath-from-binary-wheels-on-pypi>`__.
81
-
82
80
  Binary wheels for native Windows (x86_64) are are available for a subset of
83
81
  the passagemath distributions. Use of the full functionality of passagemath
84
82
  on Windows currently requires the use of Windows Subsystem for Linux (WSL)
85
83
  or virtualization.
86
84
 
87
- The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
85
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
88
86
 
89
87
 
90
88
  About this pip-installable distribution package
@@ -140,7 +138,7 @@ Use with sage.graphs::
140
138
 
141
139
  $ pipx run --pip-args="--prefer-binary" --spec "passagemath-nauty[test]" ipython
142
140
 
143
- In [1]: from sage.all__sagemath_graphs import *
141
+ In [1]: from passagemath_graphs import *
144
142
 
145
143
  In [2]: gen = graphs.nauty_geng("7 -c") # connected graphs on 7 vertices
146
144
 
@@ -2,7 +2,9 @@ MANIFEST.in
2
2
  README.rst
3
3
  VERSION.txt
4
4
  pyproject.toml
5
+ repair_wheel.py
5
6
  setup.py
7
+ passagemath_nauty/__init__.py
6
8
  passagemath_nauty.egg-info/PKG-INFO
7
9
  passagemath_nauty.egg-info/SOURCES.txt
8
10
  passagemath_nauty.egg-info/dependency_links.txt
@@ -0,0 +1,9 @@
1
+ cysignals!=1.12.0,>=1.11.2
2
+ passagemath-environment~=10.6.45.0
3
+ passagemath-graphs~=10.6.45.0
4
+
5
+ [:sys_platform == "win32"]
6
+ cysignals!=1.12.4
7
+
8
+ [test]
9
+ passagemath-repl
@@ -3,11 +3,11 @@
3
3
  requires = [
4
4
  'setuptools >= 77.0.0',
5
5
  'pkgconfig',
6
- 'passagemath-conf ~= 10.6.4.0 ; sys_platform != "win32"',
7
- 'passagemath-setup ~= 10.6.4.0',
8
- 'passagemath-environment ~= 10.6.4.0',
9
- 'cython >=3.0, != 3.0.3, <4.0', 'cython >=3.0.8,<3.1.0',
10
- 'cysignals <1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
6
+ 'passagemath-conf ~= 10.6.45.0 ; sys_platform != "win32"',
7
+ 'passagemath-setup ~= 10.6.45.0',
8
+ 'passagemath-environment ~= 10.6.45.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,9 +15,9 @@ build-backend = "setuptools.build_meta"
15
15
  name = "passagemath-nauty"
16
16
  description = "passagemath: Find automorphism groups of graphs, generate non-isomorphic graphs with nauty"
17
17
  dependencies = [
18
- 'cysignals <1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
19
- 'passagemath-environment ~= 10.6.4.0',
20
- 'passagemath-graphs ~= 10.6.4.0',
18
+ 'cysignals !=1.12.4; sys_platform == "win32"', 'cysignals >=1.11.2, != 1.12.0',
19
+ 'passagemath-environment ~= 10.6.45.0',
20
+ 'passagemath-graphs ~= 10.6.45.0',
21
21
  ]
22
22
  dynamic = ["version"]
23
23
  license = "GPL-2.0-or-later"
@@ -38,10 +38,11 @@ classifiers = [
38
38
  "Programming Language :: Python :: 3.11",
39
39
  "Programming Language :: Python :: 3.12",
40
40
  "Programming Language :: Python :: 3.13",
41
+ "Programming Language :: Python :: 3.14",
41
42
  "Programming Language :: Python :: Implementation :: CPython",
42
43
  "Topic :: Scientific/Engineering :: Mathematics",
43
44
  ]
44
- requires-python = ">=3.10, <3.14"
45
+ requires-python = ">=3.10, <3.15"
45
46
 
46
47
  [project.urls]
47
48
  "release notes" = "https://github.com/passagemath/passagemath/releases"
@@ -63,18 +64,15 @@ test = [
63
64
  ]
64
65
 
65
66
  [tool.cibuildwheel.linux]
66
- # Unfortunately CIBW_REPAIR_WHEEL_COMMAND does not expand {project} (and other placeholders),
67
- # so there is no clean way to refer to the repair_wheel.py script
68
- # https://github.com/pypa/cibuildwheel/issues/1931
69
67
  repair-wheel-command = [
70
68
  'python3 -m pip install passagemath-conf auditwheel',
71
- 'python3 pkgs/sagemath-nauty/repair_wheel.py {wheel}',
69
+ 'python3 {package}/repair_wheel.py {wheel}',
72
70
  'auditwheel repair -w {dest_dir} {wheel}',
73
71
  ]
74
72
  [tool.cibuildwheel.macos]
75
73
  repair-wheel-command = [
76
74
  'python3 -m pip install passagemath-conf auditwheel',
77
- 'python3 pkgs/sagemath-nauty/repair_wheel.py {wheel}',
75
+ 'python3 {package}/repair_wheel.py {wheel}',
78
76
  'delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}',
79
77
  ]
80
78
 
@@ -0,0 +1,25 @@
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/* --> sage_wheels/bin/*
19
+ # list of files from build/pkgs/nauty/spkg-install.in
20
+ with InWheel(wheel, wheel):
21
+ command = f'set -o pipefail; (cd {shlex.quote(SAGE_LOCAL)} && tar cf - --dereference bin/{{addedgeg,addptg,amtog,ancestorg,assembleg,biplabg,catg,complg,converseg,copyg,countg,countneg,cubhamg,deledgeg,delptg,dimacs2g,directg,dreadnaut,dretodot,dretog,edgetransg,genbg,genbgL,geng,gengL,genposetg,genquarticg,genrang,genspecialg,gentourng,gentreeg,genktreeg,hamheuristic,labelg,linegraphg,listg,multig,nbrhoodg,newedgeg,pickg,planarg,productg,ranlabg,ransubg,{"shortg," if sys.platform != "win32" else ""}showg,subdivideg,twohamg,underlyingg,uniqg,vcolg,watercluster2,NRswitchg}}) | (mkdir -p sage_wheels && cd sage_wheels && tar xvf -)'
22
+ print(f'Running {command}')
23
+ sys.stdout.flush()
24
+ if os.system(f"bash -c {shlex.quote(command)}") != 0:
25
+ sys.exit(1)
@@ -8,5 +8,7 @@ sys.path.insert(0, os.path.dirname(__file__))
8
8
  from sage_setup import sage_setup
9
9
 
10
10
  sage_setup(['sagemath-nauty'],
11
+ recurse_packages=('sage', 'passagemath_nauty'),
11
12
  spkgs=['nauty'],
12
- package_data={})
13
+ package_data={},
14
+ py_limited_api=True)
@@ -1 +0,0 @@
1
- 10.6.4
@@ -1,9 +0,0 @@
1
- cysignals!=1.12.0,>=1.11.2
2
- passagemath-environment~=10.6.4.0
3
- passagemath-graphs~=10.6.4.0
4
-
5
- [:sys_platform == "win32"]
6
- cysignals<1.12.4
7
-
8
- [test]
9
- passagemath-repl