python-constraint2 2.2.2__tar.gz → 2.2.3__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.2.2 → python_constraint2-2.2.3}/PKG-INFO +6 -1
  2. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/pyproject.toml +8 -3
  3. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/LICENSE +0 -0
  4. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/README.rst +0 -0
  5. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/__init__.py +0 -0
  6. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/constraints.c +0 -0
  7. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/constraints.py +0 -0
  8. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/domain.c +0 -0
  9. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/domain.py +0 -0
  10. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/parser.c +0 -0
  11. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/parser.py +0 -0
  12. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/problem.c +0 -0
  13. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/problem.py +0 -0
  14. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/solvers.c +0 -0
  15. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/constraint/solvers.py +0 -0
  16. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/cythonize_build.py +0 -0
  17. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/__init__.py +0 -0
  18. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/benchmarks.py +0 -0
  19. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/setup_teardown.py +0 -0
  20. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_compilation.py +0 -0
  21. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_constraint.py +0 -0
  22. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_doctests.py +0 -0
  23. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_parser.py +0 -0
  24. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_problem.py +0 -0
  25. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_solvers.py +0 -0
  26. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_some_not_in_set.py +0 -0
  27. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_toml_file.py +0 -0
  28. {python_constraint2-2.2.2 → python_constraint2-2.2.3}/tests/test_util_benchmark.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: python-constraint2
3
- Version: 2.2.2
3
+ Version: 2.2.3
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
@@ -24,6 +24,11 @@ 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
+ Project-URL: Changelog, https://github.com/python-constraint/python-constraint/blob/main/CHANGELOG.md
28
+ Project-URL: Documentation, http://python-constraint.github.io/python-constraint/
29
+ Project-URL: Homepage, http://python-constraint.github.io/python-constraint/
30
+ Project-URL: Issues, https://github.com/python-constraint/python-constraint/issues
31
+ Project-URL: Repository, https://github.com/python-constraint/python-constraint
27
32
  Description-Content-Type: text/x-rst
28
33
 
29
34
  |License| |Build Status| |Docs| |Python Versions| |Downloads| |Status| |Code Coverage|
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
5
5
  [project]
6
6
  name = "python-constraint2" # when set back to "python-constraint", don't forget to remove '2' in other places (e.g. README)
7
7
  description = "python-constraint is a module for efficiently solving CSPs (Constraint Solving Problems) over finite domains."
8
- version = "2.2.2" # adhere to PEP440 versioning: https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#id55
8
+ version = "2.2.3" # adhere to PEP440 versioning: https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#id55
9
9
  authors = [
10
10
  {name = "Gustavo Niemeyer", email = "gustavo@niemeyer.net"},
11
11
  {name = "Sébastien Celles", email = "s.celles@gmail.com"},
@@ -14,8 +14,6 @@ authors = [
14
14
  license = "BSD-2-Clause"
15
15
  readme = "README.rst"
16
16
  maintainers = [{name = "Floris-Jan Willemsen", email = "fjwillemsen97@gmail.com"}]
17
- repository = "https://github.com/python-constraint/python-constraint"
18
- documentation = "http://python-constraint.github.io/python-constraint/"
19
17
  keywords = [
20
18
  "CSP",
21
19
  "constraint solving problems",
@@ -45,6 +43,13 @@ classifiers = [
45
43
  # ATTENTION: if anything is changed here, run `poetry update`
46
44
  requires-python = ">= 3.9" # when changing the Python versions, also change the test versions in the Noxfile and GitHub Actions
47
45
 
46
+ [project.urls]
47
+ Homepage = "http://python-constraint.github.io/python-constraint/"
48
+ Repository = "https://github.com/python-constraint/python-constraint"
49
+ Documentation = "http://python-constraint.github.io/python-constraint/"
50
+ Issues = "https://github.com/python-constraint/python-constraint/issues"
51
+ Changelog = "https://github.com/python-constraint/python-constraint/blob/main/CHANGELOG.md"
52
+
48
53
  [tool.poetry]
49
54
  include = [{ path = "constraint/*.so", format = "wheel" }]
50
55
  packages = [