islpy 2025.1.5__cp313-cp313-macosx_11_0_arm64.whl → 2025.2__cp313-cp313-macosx_11_0_arm64.whl
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.
- islpy/__init__.py +220 -984
- islpy/_isl.cpython-313-darwin.so +0 -0
- islpy/_isl.pyi +9369 -0
- islpy/_monkeypatch.py +1015 -0
- islpy/py.typed +0 -0
- islpy/version.py +11 -2
- {islpy-2025.1.5.dist-info → islpy-2025.2.dist-info}/METADATA +8 -23
- islpy-2025.2.dist-info/RECORD +9 -0
- {islpy-2025.1.5.dist-info → islpy-2025.2.dist-info}/WHEEL +1 -1
- islpy-2025.1.5.dist-info/RECORD +0 -7
- islpy-2025.1.5.dist-info/top_level.txt +0 -1
islpy/py.typed
ADDED
File without changes
|
islpy/version.py
CHANGED
@@ -1,2 +1,11 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
from __future__ import annotations
|
2
|
+
|
3
|
+
import re
|
4
|
+
from importlib import metadata
|
5
|
+
|
6
|
+
|
7
|
+
VERSION_TEXT = metadata.version("islpy")
|
8
|
+
_match = re.match(r"^([0-9.]+)([a-z0-9]*?)$", VERSION_TEXT)
|
9
|
+
assert _match is not None
|
10
|
+
VERSION_STATUS = _match.group(2)
|
11
|
+
VERSION = tuple(int(nr) for nr in _match.group(1).split("."))
|
@@ -1,40 +1,25 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: islpy
|
3
|
-
Version: 2025.
|
3
|
+
Version: 2025.2
|
4
4
|
Summary: Wrapper around isl, an integer set library
|
5
|
-
|
6
|
-
|
7
|
-
Author-email: inform@tiker.net
|
8
|
-
License: MIT
|
5
|
+
Author-Email: Andreas Kloeckner <inform@tiker.net>
|
6
|
+
License-Expression: MIT
|
9
7
|
Classifier: Development Status :: 4 - Beta
|
10
8
|
Classifier: Intended Audience :: Developers
|
11
9
|
Classifier: Intended Audience :: Other Audience
|
12
10
|
Classifier: Intended Audience :: Science/Research
|
13
|
-
Classifier: License :: OSI Approved :: MIT License
|
14
|
-
Classifier: Natural Language :: English
|
15
11
|
Classifier: Programming Language :: C++
|
16
12
|
Classifier: Programming Language :: Python
|
17
13
|
Classifier: Programming Language :: Python :: 3
|
18
|
-
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
|
19
14
|
Classifier: Topic :: Scientific/Engineering
|
20
15
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
21
16
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
22
17
|
Classifier: Topic :: Scientific/Engineering :: Visualization
|
23
18
|
Classifier: Topic :: Software Development :: Libraries
|
24
|
-
|
19
|
+
Project-URL: Documentation, https://documen.tician.de/islpy
|
20
|
+
Project-URL: Repository, https://github.com/inducer/islpy
|
21
|
+
Requires-Python: ~=3.10
|
25
22
|
Description-Content-Type: text/x-rst
|
26
|
-
Provides-Extra: test
|
27
|
-
Requires-Dist: pytest>=2; extra == "test"
|
28
|
-
Dynamic: author
|
29
|
-
Dynamic: author-email
|
30
|
-
Dynamic: classifier
|
31
|
-
Dynamic: description
|
32
|
-
Dynamic: description-content-type
|
33
|
-
Dynamic: home-page
|
34
|
-
Dynamic: license
|
35
|
-
Dynamic: provides-extra
|
36
|
-
Dynamic: requires-python
|
37
|
-
Dynamic: summary
|
38
23
|
|
39
24
|
islpy: Polyhedral Analysis from Python
|
40
25
|
======================================
|
@@ -42,9 +27,9 @@ islpy: Polyhedral Analysis from Python
|
|
42
27
|
.. image:: https://gitlab.tiker.net/inducer/islpy/badges/main/pipeline.svg
|
43
28
|
:alt: Gitlab Build Status
|
44
29
|
:target: https://gitlab.tiker.net/inducer/islpy/commits/main
|
45
|
-
.. image:: https://github.com/inducer/islpy/workflows/
|
30
|
+
.. image:: https://github.com/inducer/islpy/actions/workflows/ci.yml/badge.svg
|
46
31
|
:alt: Github Build Status
|
47
|
-
:target: https://github.com/inducer/islpy/actions
|
32
|
+
:target: https://github.com/inducer/islpy/actions/workflows/ci.yml
|
48
33
|
.. image:: https://badge.fury.io/py/islpy.svg
|
49
34
|
:alt: Python Package Index Release Page
|
50
35
|
:target: https://pypi.org/project/islpy/
|
@@ -0,0 +1,9 @@
|
|
1
|
+
islpy/version.py,sha256=9KVEg7OX9uCaA6ElUMeiAh-zDrxsy3u2H6VQm_-LTUE,301
|
2
|
+
islpy/_isl.cpython-313-darwin.so,sha256=dYn3efr8wy86ZyGApl0cMfmxLW4DayHKkPYm0CReu2M,7927080
|
3
|
+
islpy/__init__.py,sha256=6In7YFiBLKNNVIGkpKMiB1H_-H2OQ5ovlqJ_Tz0nAvA,13073
|
4
|
+
islpy/_isl.pyi,sha256=rmWMkaV2DBUBqDl6c4hdyJR2QE7uOfS2yo2t4SOApSc,260256
|
5
|
+
islpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
islpy/_monkeypatch.py,sha256=iFDDVUTNZhf98TcprqaW7UMXtx-fMm9sP-A3jWF32OA,28592
|
7
|
+
islpy-2025.2.dist-info/RECORD,,
|
8
|
+
islpy-2025.2.dist-info/WHEEL,sha256=LDEcERf6NwqnVU7GVh2ePzziJ1dorOEI8grnlWj9zQ0,141
|
9
|
+
islpy-2025.2.dist-info/METADATA,sha256=MP7D5-bXwNkMnh82YAQwyKnxuYie87BD6azadm508mA,2964
|
islpy-2025.1.5.dist-info/RECORD
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
islpy/version.py,sha256=wug5gdrP21eo1TlCU6gFz2-oncol6ON2IqIbXauhaNM,72
|
2
|
-
islpy/_isl.cpython-313-darwin.so,sha256=YP81ys8TL2u3GW9xSkgaf8VEIZrjyC7DcpYuManmkFo,7943192
|
3
|
-
islpy/__init__.py,sha256=y5AwucXSrDi-y6FMkhK7F2-riplpxaX0zHJfromRCUw,37276
|
4
|
-
islpy-2025.1.5.dist-info/RECORD,,
|
5
|
-
islpy-2025.1.5.dist-info/WHEEL,sha256=RKIEjucJN8CeTl-8aT264f-d7DwF42JIv5EB5P7fyqg,131
|
6
|
-
islpy-2025.1.5.dist-info/top_level.txt,sha256=txVjJJ85Sa3IMOF6WOh_bTkOyRDWiSW2kQOf8vSPb6M,6
|
7
|
-
islpy-2025.1.5.dist-info/METADATA,sha256=yXw7N_cmUSMszsqiBk1ZACkvRVeyYzVCdZOOll1QlCM,3329
|
@@ -1 +0,0 @@
|
|
1
|
-
islpy
|