python-constraint2 2.0.0b5__tar.gz → 2.0.0b8__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.0b5 → python_constraint2-2.0.0b8}/PKG-INFO +3 -3
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/constraints.c +506 -476
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/domain.c +471 -455
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/problem.c +1308 -1260
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/problem.py +9 -6
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/solvers.c +1332 -1185
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/solvers.py +7 -7
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/pyproject.toml +5 -4
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/LICENSE +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/README.rst +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/__init__.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/constraints.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/constraint/domain.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/cythonize_build.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/__init__.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/setup_teardown.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/test_compilation.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/test_constraint.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/test_doctests.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/test_problem.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/test_solvers.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/test_some_not_in_set.py +0 -0
- {python_constraint2-2.0.0b5 → python_constraint2-2.0.0b8}/tests/test_toml_file.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.0b8
|
|
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.9,<3.14
|
|
13
13
|
Classifier: Development Status :: 4 - Beta
|
|
14
14
|
Classifier: Environment :: Console
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
@@ -20,11 +20,11 @@ Classifier: Natural Language :: English
|
|
|
20
20
|
Classifier: Programming Language :: C
|
|
21
21
|
Classifier: Programming Language :: Cython
|
|
22
22
|
Classifier: Programming Language :: Python :: 3
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.9
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.10
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
27
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
28
28
|
Classifier: Topic :: Scientific/Engineering
|
|
29
29
|
Classifier: Topic :: Software Development
|
|
30
30
|
Project-URL: Documentation, http://python-constraint.github.io/python-constraint/
|