python-constraint2 2.1.0__tar.gz → 2.2.1__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.
Files changed (28) hide show
  1. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/PKG-INFO +8 -11
  2. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/README.rst +2 -1
  3. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/problem.c +1589 -1218
  4. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/problem.py +11 -0
  5. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/solvers.c +4260 -4260
  6. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/solvers.py +84 -84
  7. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/pyproject.toml +35 -26
  8. python_constraint2-2.2.1/tests/benchmarks.py +109 -0
  9. python_constraint2-2.2.1/tests/test_util_benchmark.py +148 -0
  10. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/LICENSE +0 -0
  11. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/__init__.py +0 -0
  12. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/constraints.c +0 -0
  13. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/constraints.py +0 -0
  14. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/domain.c +0 -0
  15. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/domain.py +0 -0
  16. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/parser.c +0 -0
  17. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/constraint/parser.py +0 -0
  18. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/cythonize_build.py +0 -0
  19. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/__init__.py +0 -0
  20. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/setup_teardown.py +0 -0
  21. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/test_compilation.py +0 -0
  22. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/test_constraint.py +0 -0
  23. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/test_doctests.py +0 -0
  24. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/test_parser.py +0 -0
  25. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/test_problem.py +0 -0
  26. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/test_solvers.py +0 -0
  27. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/test_some_not_in_set.py +0 -0
  28. {python_constraint2-2.1.0 → python_constraint2-2.2.1}/tests/test_toml_file.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: python-constraint2
3
- Version: 2.1.0
3
+ Version: 2.2.1
4
4
  Summary: python-constraint is a module for efficiently solving CSPs (Constraint Solving Problems) over finite domains.
5
5
  License: BSD-2-Clause
6
6
  Keywords: CSP,constraint solving problems,problem solver,SMT,satisfiability modulo theory,SAT
@@ -8,26 +8,22 @@ Author: Gustavo Niemeyer
8
8
  Author-email: gustavo@niemeyer.net
9
9
  Maintainer: Floris-Jan Willemsen
10
10
  Maintainer-email: fjwillemsen97@gmail.com
11
- Requires-Python: >=3.9,<3.15
12
- Classifier: Development Status :: 4 - Beta
11
+ Requires-Python: >= 3.9
13
12
  Classifier: Environment :: Console
13
+ Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
- Classifier: Intended Audience :: Education
16
15
  Classifier: Intended Audience :: Science/Research
17
- Classifier: License :: OSI Approved :: BSD License
16
+ Classifier: Intended Audience :: Education
18
17
  Classifier: Natural Language :: English
19
18
  Classifier: Programming Language :: C
20
19
  Classifier: Programming Language :: Cython
21
- Classifier: Programming Language :: Python :: 3
20
+ Classifier: Topic :: Scientific/Engineering
21
+ Classifier: Topic :: Software Development
22
22
  Classifier: Programming Language :: Python :: 3.9
23
23
  Classifier: Programming Language :: Python :: 3.10
24
24
  Classifier: Programming Language :: Python :: 3.11
25
25
  Classifier: Programming Language :: Python :: 3.12
26
26
  Classifier: Programming Language :: Python :: 3.13
27
- Classifier: Topic :: Scientific/Engineering
28
- Classifier: Topic :: Software Development
29
- Project-URL: Documentation, http://python-constraint.github.io/python-constraint/
30
- Project-URL: Repository, https://github.com/python-constraint/python-constraint
31
27
  Description-Content-Type: text/x-rst
32
28
 
33
29
  |License| |Build Status| |Docs| |Python Versions| |Downloads| |Status| |Code Coverage|
@@ -205,7 +201,8 @@ For an overview of recent changes, visit the `Changelog <https://github.com/pyth
205
201
 
206
202
  Planned development:
207
203
 
208
- - Add `benchmarking tests <https://pypi.org/project/pytest-benchmark/>`_ automated with `GH actions <https://github.com/benchmark-action/github-action-benchmark>`_
204
+ - Rewrite hotspots in C / Pyx instead of pure python mode
205
+ - Improvements to make the ParallelSolver competitive (experiments reveal the freethreading mode to be promising)
209
206
  - Versioned documentation
210
207
 
211
208
  Contact
@@ -173,7 +173,8 @@ For an overview of recent changes, visit the `Changelog <https://github.com/pyth
173
173
 
174
174
  Planned development:
175
175
 
176
- - Add `benchmarking tests <https://pypi.org/project/pytest-benchmark/>`_ automated with `GH actions <https://github.com/benchmark-action/github-action-benchmark>`_
176
+ - Rewrite hotspots in C / Pyx instead of pure python mode
177
+ - Improvements to make the ParallelSolver competitive (experiments reveal the freethreading mode to be promising)
177
178
  - Versioned documentation
178
179
 
179
180
  Contact