python-constraint2 2.0.0b3__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.0b3 → python_constraint2-2.0.0b4}/PKG-INFO +3 -1
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/constraints.c +1411 -536
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/domain.c +279 -135
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/problem.c +461 -207
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/solvers.c +907 -367
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/pyproject.toml +11 -11
- 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.0b3 → python_constraint2-2.0.0b4}/LICENSE +0 -0
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/README.rst +0 -0
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/__init__.py +0 -0
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/constraints.py +0 -0
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/domain.py +0 -0
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/problem.py +0 -0
- {python_constraint2-2.0.0b3 → python_constraint2-2.0.0b4}/constraint/solvers.py +0 -0
- /python_constraint2-2.0.0b3/build.py → /python_constraint2-2.0.0b4/cythonize_build.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
|
|
@@ -17,6 +17,8 @@ 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
|
|
21
23
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
24
|
Classifier: Programming Language :: Python :: 3.9
|