python-constraint2 2.0.0b2__tar.gz → 2.0.0b4__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.0b2 → python_constraint2-2.0.0b4}/PKG-INFO +5 -6
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/README.rst +0 -4
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/constraints.c +2277 -1441
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/constraints.py +1 -1
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/domain.c +617 -473
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/domain.py +8 -3
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/problem.c +719 -585
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/problem.py +1 -1
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/solvers.c +1374 -873
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/solvers.py +1 -1
- python_constraint2-2.0.0b2/build.py → python_constraint2-2.0.0b4/cythonize_build.py +3 -2
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/pyproject.toml +17 -16
- python_constraint2-2.0.0b4/tests/__init__.py +0 -0
- python_constraint2-2.0.0b4/tests/setup_teardown.py +40 -0
- python_constraint2-2.0.0b4/tests/test_compilation.py +17 -0
- python_constraint2-2.0.0b4/tests/test_constraint.py +127 -0
- python_constraint2-2.0.0b4/tests/test_doctests.py +10 -0
- python_constraint2-2.0.0b4/tests/test_problem.py +27 -0
- python_constraint2-2.0.0b4/tests/test_solvers.py +72 -0
- python_constraint2-2.0.0b4/tests/test_some_not_in_set.py +99 -0
- python_constraint2-2.0.0b4/tests/test_toml_file.py +72 -0
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/LICENSE +0 -0
- {python_constraint2-2.0.0b2 → python_constraint2-2.0.0b4}/constraint/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-constraint2
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.0b4
|
|
4
4
|
Summary: python-constraint is a module for efficiently solving CSPs (Constraint Solving Problems) over finite domains.
|
|
5
5
|
Home-page: https://github.com/python-constraint/python-constraint
|
|
6
6
|
License: BSD-2-Clause
|
|
@@ -9,7 +9,7 @@ Author: Gustavo Niemeyer
|
|
|
9
9
|
Author-email: gustavo@niemeyer.net
|
|
10
10
|
Maintainer: Floris-Jan Willemsen
|
|
11
11
|
Maintainer-email: fjwillemsen97@gmail.com
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.8,<3.12
|
|
13
13
|
Classifier: Development Status :: 4 - Beta
|
|
14
14
|
Classifier: Environment :: Console
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -17,7 +17,10 @@ Classifier: Intended Audience :: Education
|
|
|
17
17
|
Classifier: Intended Audience :: Science/Research
|
|
18
18
|
Classifier: License :: OSI Approved :: BSD License
|
|
19
19
|
Classifier: Natural Language :: English
|
|
20
|
+
Classifier: Programming Language :: C
|
|
21
|
+
Classifier: Programming Language :: Cython
|
|
20
22
|
Classifier: Programming Language :: Python :: 3
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
21
24
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
25
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
26
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -232,7 +235,3 @@ But it's probably better to `open an issue <https://github.com/python-constraint
|
|
|
232
235
|
:target: https://coveralls.io/github/python-constraint/python-constraint
|
|
233
236
|
:alt: Code Coverage
|
|
234
237
|
|
|
235
|
-
.. |Code Health| image:: https://landscape.io/github/python-constraint/python-constraint/master/landscape.svg?style=flat
|
|
236
|
-
:target: https://landscape.io/github/python-constraint/python-constraint/master
|
|
237
|
-
:alt: Code Health
|
|
238
|
-
|
|
@@ -202,7 +202,3 @@ But it's probably better to `open an issue <https://github.com/python-constraint
|
|
|
202
202
|
.. |Code Coverage| image:: https://coveralls.io/repos/github/python-constraint/python-constraint/badge.svg
|
|
203
203
|
:target: https://coveralls.io/github/python-constraint/python-constraint
|
|
204
204
|
:alt: Code Coverage
|
|
205
|
-
|
|
206
|
-
.. |Code Health| image:: https://landscape.io/github/python-constraint/python-constraint/master/landscape.svg?style=flat
|
|
207
|
-
:target: https://landscape.io/github/python-constraint/python-constraint/master
|
|
208
|
-
:alt: Code Health
|