v440 2.0.0.dev200__tar.gz → 2.0.2__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 (51) hide show
  1. v440-2.0.2/MANIFEST.in +2 -0
  2. {v440-2.0.0.dev200/src/v440.egg-info → v440-2.0.2}/PKG-INFO +11 -10
  3. v440-2.0.2/README.rst +7 -0
  4. v440-2.0.2/docs/v1.0.rst +709 -0
  5. v440-2.0.2/docs/v2.0.rst +523 -0
  6. {v440-2.0.0.dev200 → v440-2.0.2}/pyproject.toml +8 -9
  7. v440-2.0.2/src/v440/__init__.py +3 -0
  8. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/_utils/Cfg.py +12 -8
  9. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/_utils/Clue.py +23 -23
  10. v440-2.0.2/src/v440/abc/CoreABC.py +131 -0
  11. v440-2.0.0.dev200/src/v440/_utils/ListStringer.py → v440-2.0.2/src/v440/abc/ListABC.py +16 -12
  12. v440-2.0.0.dev200/src/v440/_utils/SlotStringer.py → v440-2.0.2/src/v440/abc/NestedABC.py +6 -7
  13. v440-2.0.0.dev200/src/v440/_utils/QualStringer.py → v440-2.0.2/src/v440/abc/QualABC.py +8 -10
  14. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/Base.py +26 -27
  15. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/Dev.py +16 -18
  16. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/Local.py +42 -46
  17. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/Post.py +16 -19
  18. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/Pre.py +17 -20
  19. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/Public.py +17 -15
  20. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/Qual.py +25 -17
  21. v440-2.0.2/src/v440/core/Release.py +209 -0
  22. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/Version.py +20 -20
  23. {v440-2.0.0.dev200/src/v440/core → v440-2.0.2/src/v440/errors}/VersionError.py +1 -1
  24. v440-2.0.2/src/v440/errors/__init__.py +0 -0
  25. v440-2.0.2/src/v440/tests/__init__.py +15 -0
  26. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/tests/test_testdata.py +132 -56
  27. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/tests/test_version.py +97 -55
  28. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/tests/testdata.toml +8 -3
  29. {v440-2.0.0.dev200 → v440-2.0.2/src/v440.egg-info}/PKG-INFO +11 -10
  30. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440.egg-info/SOURCES.txt +9 -11
  31. v440-2.0.2/src/v440.egg-info/requires.txt +8 -0
  32. v440-2.0.0.dev200/MANIFEST.in +0 -1
  33. v440-2.0.0.dev200/README.rst +0 -5
  34. v440-2.0.0.dev200/src/v440/__init__.py +0 -3
  35. v440-2.0.0.dev200/src/v440/_utils/BaseStringer.py +0 -143
  36. v440-2.0.0.dev200/src/v440/_utils/guarding.py +0 -30
  37. v440-2.0.0.dev200/src/v440/_utils/releaseparse/deleting.py +0 -36
  38. v440-2.0.0.dev200/src/v440/_utils/releaseparse/getting.py +0 -25
  39. v440-2.0.0.dev200/src/v440/_utils/releaseparse/ranging.py +0 -44
  40. v440-2.0.0.dev200/src/v440/_utils/releaseparse/setting.py +0 -52
  41. v440-2.0.0.dev200/src/v440/core/Release.py +0 -153
  42. v440-2.0.0.dev200/src/v440/tests/__init__.py +0 -11
  43. v440-2.0.0.dev200/src/v440.egg-info/requires.txt +0 -9
  44. {v440-2.0.0.dev200 → v440-2.0.2}/LICENSE.txt +0 -0
  45. {v440-2.0.0.dev200 → v440-2.0.2}/setup.cfg +0 -0
  46. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/_utils/__init__.py +0 -0
  47. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/_utils/cfg.toml +0 -0
  48. {v440-2.0.0.dev200/src/v440/_utils/releaseparse → v440-2.0.2/src/v440/abc}/__init__.py +0 -0
  49. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440/core/__init__.py +0 -0
  50. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440.egg-info/dependency_links.txt +0 -0
  51. {v440-2.0.0.dev200 → v440-2.0.2}/src/v440.egg-info/top_level.txt +0 -0
v440-2.0.2/MANIFEST.in ADDED
@@ -0,0 +1,2 @@
1
+ recursive-include docs *.rst
2
+ recursive-include src/v440 *.toml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: v440
3
- Version: 2.0.0.dev200
3
+ Version: 2.0.2
4
4
  Summary: This project provides mutable version objects in accordance with PEP440.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -28,7 +28,7 @@ Project-URL: Download, https://pypi.org/project/v440/#files
28
28
  Project-URL: Index, https://pypi.org/project/v440/
29
29
  Project-URL: Source, https://github.com/johannes-programming/v440/
30
30
  Project-URL: Website, http://v440.johannes-programming.online/
31
- Classifier: Development Status :: 3 - Alpha
31
+ Classifier: Development Status :: 5 - Production/Stable
32
32
  Classifier: Intended Audience :: Developers
33
33
  Classifier: License :: OSI Approved :: MIT License
34
34
  Classifier: Natural Language :: English
@@ -40,19 +40,20 @@ Classifier: Typing :: Typed
40
40
  Requires-Python: >=3.11
41
41
  Description-Content-Type: text/x-rst
42
42
  License-File: LICENSE.txt
43
- Requires-Dist: datahold<3,>=2.0
43
+ Requires-Dist: cmp3<2,>=1.0
44
+ Requires-Dist: copyable<2,>=1.0
45
+ Requires-Dist: datahold<4,>=3.0
44
46
  Requires-Dist: datarepr<2,>=1.1
45
- Requires-Dist: iterflat<2,>=0.1.3
46
- Requires-Dist: iterprod<2.0,>=1.0
47
- Requires-Dist: keyalias<2.0,>=1.0.3
47
+ Requires-Dist: iterflat<2,>=1.0
48
+ Requires-Dist: iterprod<2,>=1.0
48
49
  Requires-Dist: packaging<26,>=25.0
49
- Requires-Dist: setdoc<2,>=1.2.6
50
- Requires-Dist: setsig<2,>=1.0
51
- Requires-Dist: unhash<2,>=1.0.1
50
+ Requires-Dist: setdoc<2,>=1.2.9
52
51
  Dynamic: license-file
53
52
 
54
53
  ====
55
54
  v440
56
55
  ====
57
56
 
58
- Visit the website `https://v440.johannes-programming.online/ <https://v440.johannes-programming.online/>`_ for more information.
57
+ Each minor version has its own documentation.
58
+ These docs can be found as rst-files the ``docs/`` directory of this project.
59
+ They can also be viewed on the website `https://v440.johannes-programming.online/ <https://v440.johannes-programming.online/>`_.
v440-2.0.2/README.rst ADDED
@@ -0,0 +1,7 @@
1
+ ====
2
+ v440
3
+ ====
4
+
5
+ Each minor version has its own documentation.
6
+ These docs can be found as rst-files the ``docs/`` directory of this project.
7
+ They can also be viewed on the website `https://v440.johannes-programming.online/ <https://v440.johannes-programming.online/>`_.