python-constraint2 2.4.0__tar.gz → 2.5.0__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.4.0 → python_constraint2-2.5.0}/PKG-INFO +5 -3
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/constraints.c +10685 -10729
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/constraints.py +12 -5
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/domain.c +1260 -1184
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/parser.c +2987 -3217
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/problem.c +2097 -2116
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/solvers.c +3020 -3100
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/pyproject.toml +8 -7
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_util_benchmark.py +6 -1
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/LICENSE +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/README.rst +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/__init__.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/domain.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/parser.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/problem.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/constraint/solvers.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/cythonize_build.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/__init__.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/benchmarks.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/setup_teardown.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_compilation.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_constraint.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_doctests.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_parser.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_problem.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_solvers.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_some_not_in_set.py +0 -0
- {python_constraint2-2.4.0 → python_constraint2-2.5.0}/tests/test_toml_file.py +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: python-constraint2
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.5.0
|
|
4
4
|
Summary: python-constraint is a module for efficiently solving CSPs (Constraint Solving Problems) over finite domains.
|
|
5
|
-
License: BSD-2-Clause
|
|
5
|
+
License-Expression: BSD-2-Clause
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Keywords: CSP,constraint solving problems,problem solver,SMT,satisfiability modulo theory,SAT
|
|
7
8
|
Author: Floris-Jan Willemsen
|
|
8
9
|
Author-email: fjwillemsen97@gmail.com
|
|
@@ -24,6 +25,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
24
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
27
|
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
29
|
Project-URL: Changelog, https://github.com/python-constraint/python-constraint/blob/main/CHANGELOG.md
|
|
28
30
|
Project-URL: Documentation, http://python-constraint.github.io/python-constraint/
|
|
29
31
|
Project-URL: Homepage, http://python-constraint.github.io/python-constraint/
|