Metadata-Version: 2.4
Name: isl-python
Version: 0.1.10
Summary: Python binding for ISL library
Author: ZhengQiHang
Author-email: 597323109@qq.com
Maintainer: ZhengQiHang
Maintainer-email: 597323109@qq.com
License: MIT License (MIT)
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of
        this software and associated documentation files (the "Software"), to deal in
        the Software without restriction, including without limitation the rights to
        use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
        of the Software, and to permit persons to whom the Software is furnished to do
        so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: homepage, https://github.com/zhen8838/isl
Keywords: Polyhedral,Integer Set Library
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS
Dynamic: license-file

# ISL packaging repository

this repository only for packaging ISL.

# Releasing

Push a tag. That is the whole procedure.

```sh
git tag v0.1.9
git push origin v0.1.9
```

The version of the wheels is the tag name, so no file in this repository
carries it and there is nothing to edit before tagging. Anything built from
an untagged commit is versioned `0.0.0.dev0+g<sha>` and is not uploaded.

`interface/isl.py.core` and `interface/Interop.cs` are produced from the isl
headers by `interface/extract_interface`, a clang tool, and are not kept in
the repository. A first CI job builds that tool, runs it and hands the result
to the wheel builds, so changing a header is all a change takes.

Building from a source checkout means generating them first, which needs
clang; isl adapts to the version it finds:

```sh
./configure --with-clang=system --with-int=imath
make interface/isl.py.core interface/Interop.cs
```

# Todo List

- [] python wheels on windows AMD64
- [x] python wheels on linux x86_64
- [x] python wheels on mac arm64
- [] python wheels on mac x86_64
- [] make isl_*_list iterable in python interface
- [x] export remove_map_if in python interface
- [] export isl_pw_qpolynomial in python interface
- [x] fix export isl_printer_to_str in python interface
- [] fix codegen test segment fault
- [] optimize get_xx method as property in python interface
- [] ⚠️ fix multi_pw_aff and pw_multi_aff confuse in python
