python-constraint2 2.0.0b8__tar.gz → 2.0.2__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.
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/PKG-INFO +9 -9
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/README.rst +7 -6
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/constraints.c +2592 -2585
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/constraints.py +9 -8
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/problem.c +789 -808
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/problem.py +11 -10
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/solvers.c +2235 -2231
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/solvers.py +25 -21
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/pyproject.toml +12 -8
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/LICENSE +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/__init__.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/domain.c +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/constraint/domain.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/cythonize_build.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/__init__.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/setup_teardown.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/test_compilation.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/test_constraint.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/test_doctests.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/test_problem.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/test_solvers.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/test_some_not_in_set.py +0 -0
- {python_constraint2-2.0.0b8 → python_constraint2-2.0.2}/tests/test_toml_file.py +0 -0
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: python-constraint2
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: python-constraint is a module for efficiently solving CSPs (Constraint Solving Problems) over finite domains.
|
|
5
|
-
Home-page: https://github.com/python-constraint/python-constraint
|
|
6
5
|
License: BSD-2-Clause
|
|
7
6
|
Keywords: CSP,constraint solving problems,problem solver,SMT,satisfiability modulo theory,SAT
|
|
8
7
|
Author: Gustavo Niemeyer
|
|
@@ -41,6 +40,7 @@ python-constraint
|
|
|
41
40
|
=================
|
|
42
41
|
|
|
43
42
|
| This software is now back to active development / maintainance status.
|
|
43
|
+
| IMPORTANT: the new version can be installed with `pip install python-constraint2`, as the original pip release will not be updated.
|
|
44
44
|
| For an overview of recent changes, visit the `Changelog <https://github.com/python-constraint/python-constraint/blob/main/CHANGELOG.md>`_.
|
|
45
45
|
| The complete documentation can be found `here <http://python-constraint.github.io/python-constraint/>`_.
|
|
46
46
|
|
|
@@ -176,7 +176,7 @@ Download and install
|
|
|
176
176
|
|
|
177
177
|
.. code-block:: shell
|
|
178
178
|
|
|
179
|
-
$ pip install python-
|
|
179
|
+
$ pip install python-constraint2
|
|
180
180
|
|
|
181
181
|
Testing
|
|
182
182
|
-------
|
|
@@ -200,15 +200,15 @@ For an overview of recent changes, visit the `Changelog <https://github.com/pyth
|
|
|
200
200
|
|
|
201
201
|
Planned development:
|
|
202
202
|
|
|
203
|
-
- Add a string parser for constraints
|
|
204
203
|
- Add parallel-capable solver
|
|
204
|
+
- Add a string parser for constraints
|
|
205
205
|
- Versioned documentation
|
|
206
206
|
|
|
207
207
|
Contact
|
|
208
208
|
-------
|
|
209
|
-
- `
|
|
210
|
-
- `Sébastien Celles <https://github.com/
|
|
211
|
-
- `
|
|
209
|
+
- `Floris-Jan Willemsen <https://github.com/fjwillemsen>`_ <fjwillemsen97@gmail.com> (current maintainer)
|
|
210
|
+
- `Sébastien Celles <https://github.com/s-celles/>`_ <s.celles@gmail.com> (former maintainer)
|
|
211
|
+
- `Gustavo Niemeyer <https://github.com/niemeyer/>`_ <gustavo@niemeyer.net> (initial developer)
|
|
212
212
|
|
|
213
213
|
But it's probably better to `open an issue <https://github.com/python-constraint/python-constraint/issues>`_.
|
|
214
214
|
|
|
@@ -226,7 +226,7 @@ But it's probably better to `open an issue <https://github.com/python-constraint
|
|
|
226
226
|
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/python-constraint2
|
|
227
227
|
:alt: PyPI - Python Versions
|
|
228
228
|
|
|
229
|
-
.. |Downloads| image:: https://img.shields.io/pypi/dm/python-
|
|
229
|
+
.. |Downloads| image:: https://img.shields.io/pypi/dm/python-constraint2
|
|
230
230
|
:alt: PyPI - Downloads
|
|
231
231
|
|
|
232
232
|
.. |Status| image:: https://img.shields.io/pypi/status/python-constraint2
|
|
@@ -8,6 +8,7 @@ python-constraint
|
|
|
8
8
|
=================
|
|
9
9
|
|
|
10
10
|
| This software is now back to active development / maintainance status.
|
|
11
|
+
| IMPORTANT: the new version can be installed with `pip install python-constraint2`, as the original pip release will not be updated.
|
|
11
12
|
| For an overview of recent changes, visit the `Changelog <https://github.com/python-constraint/python-constraint/blob/main/CHANGELOG.md>`_.
|
|
12
13
|
| The complete documentation can be found `here <http://python-constraint.github.io/python-constraint/>`_.
|
|
13
14
|
|
|
@@ -143,7 +144,7 @@ Download and install
|
|
|
143
144
|
|
|
144
145
|
.. code-block:: shell
|
|
145
146
|
|
|
146
|
-
$ pip install python-
|
|
147
|
+
$ pip install python-constraint2
|
|
147
148
|
|
|
148
149
|
Testing
|
|
149
150
|
-------
|
|
@@ -167,15 +168,15 @@ For an overview of recent changes, visit the `Changelog <https://github.com/pyth
|
|
|
167
168
|
|
|
168
169
|
Planned development:
|
|
169
170
|
|
|
170
|
-
- Add a string parser for constraints
|
|
171
171
|
- Add parallel-capable solver
|
|
172
|
+
- Add a string parser for constraints
|
|
172
173
|
- Versioned documentation
|
|
173
174
|
|
|
174
175
|
Contact
|
|
175
176
|
-------
|
|
176
|
-
- `
|
|
177
|
-
- `Sébastien Celles <https://github.com/
|
|
178
|
-
- `
|
|
177
|
+
- `Floris-Jan Willemsen <https://github.com/fjwillemsen>`_ <fjwillemsen97@gmail.com> (current maintainer)
|
|
178
|
+
- `Sébastien Celles <https://github.com/s-celles/>`_ <s.celles@gmail.com> (former maintainer)
|
|
179
|
+
- `Gustavo Niemeyer <https://github.com/niemeyer/>`_ <gustavo@niemeyer.net> (initial developer)
|
|
179
180
|
|
|
180
181
|
But it's probably better to `open an issue <https://github.com/python-constraint/python-constraint/issues>`_.
|
|
181
182
|
|
|
@@ -193,7 +194,7 @@ But it's probably better to `open an issue <https://github.com/python-constraint
|
|
|
193
194
|
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/python-constraint2
|
|
194
195
|
:alt: PyPI - Python Versions
|
|
195
196
|
|
|
196
|
-
.. |Downloads| image:: https://img.shields.io/pypi/dm/python-
|
|
197
|
+
.. |Downloads| image:: https://img.shields.io/pypi/dm/python-constraint2
|
|
197
198
|
:alt: PyPI - Downloads
|
|
198
199
|
|
|
199
200
|
.. |Status| image:: https://img.shields.io/pypi/status/python-constraint2
|