v440 2.0.0.dev55__tar.gz → 2.0.0.dev56__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 (35) hide show
  1. {v440-2.0.0.dev55/src/v440.egg-info → v440-2.0.0.dev56}/PKG-INFO +1 -1
  2. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/pyproject.toml +1 -1
  3. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/BaseList.py +1 -1
  4. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/Digest.py +1 -1
  5. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/SlotList.py +1 -8
  6. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/VList.py +0 -1
  7. v440-2.0.0.dev56/src/v440/_utils/cfg.toml +9 -0
  8. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/core/Local.py +0 -1
  9. {v440-2.0.0.dev55 → v440-2.0.0.dev56/src/v440.egg-info}/PKG-INFO +1 -1
  10. v440-2.0.0.dev55/src/v440/_utils/cfg.toml +0 -9
  11. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/LICENSE.txt +0 -0
  12. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/MANIFEST.in +0 -0
  13. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/README.rst +0 -0
  14. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/setup.cfg +0 -0
  15. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/__init__.py +0 -0
  16. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/Cfg.py +0 -0
  17. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/Pattern.py +0 -0
  18. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/__init__.py +0 -0
  19. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/qualparse.py +0 -0
  20. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/_utils/utils.py +0 -0
  21. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/core/Base.py +0 -0
  22. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/core/Public.py +0 -0
  23. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/core/Qual.py +0 -0
  24. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/core/Release.py +0 -0
  25. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/core/Version.py +0 -0
  26. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/core/VersionError.py +0 -0
  27. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/core/__init__.py +0 -0
  28. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/tests/__init__.py +0 -0
  29. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/tests/test_testdata.py +0 -0
  30. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/tests/test_version.py +0 -0
  31. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440/tests/testdata.toml +0 -0
  32. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440.egg-info/SOURCES.txt +0 -0
  33. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440.egg-info/dependency_links.txt +0 -0
  34. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440.egg-info/requires.txt +0 -0
  35. {v440-2.0.0.dev55 → v440-2.0.0.dev56}/src/v440.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: v440
3
- Version: 2.0.0.dev55
3
+ Version: 2.0.0.dev56
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)
@@ -36,7 +36,7 @@ keywords = []
36
36
  name = "v440"
37
37
  readme = "README.rst"
38
38
  requires-python = ">=3.11"
39
- version = "2.0.0.dev55"
39
+ version = "2.0.0.dev56"
40
40
 
41
41
  [project.license]
42
42
  file = "LICENSE.txt"
@@ -11,7 +11,7 @@ from v440.core.VersionError import VersionError
11
11
 
12
12
 
13
13
  @scaevola.auto
14
- class BaseList(collections.abc.Sized):
14
+ class BaseList(collections.abc.Collection):
15
15
  __slots__ = ()
16
16
 
17
17
  @abstractmethod
@@ -13,8 +13,8 @@ class Digest:
13
13
  name: str
14
14
  kind: Any
15
15
 
16
+ @setdoc.basic
16
17
  def __call__(self: Self, *args: Any, **kwargs: Any) -> Any:
17
- "This magic method implements self(*args, **kwargs)."
18
18
  return self.wrapped(*args, **kwargs)
19
19
 
20
20
  def __get__(
@@ -1,21 +1,14 @@
1
- import collections
2
- from abc import abstractmethod
3
1
  from functools import partial
4
2
  from typing import *
5
3
 
6
- import scaevola
7
4
  import setdoc
8
- from datarepr import datarepr
9
5
 
10
6
  from v440._utils.BaseList import BaseList
11
- from v440._utils.utils import guard
12
- from v440.core.VersionError import VersionError
13
7
 
14
8
  __all__ = ["SlotList"]
15
9
 
16
10
 
17
- @scaevola.auto
18
- class SlotList(collections.abc.Collection, BaseList):
11
+ class SlotList(BaseList):
19
12
  __slots__ = ()
20
13
 
21
14
  data: tuple
@@ -3,7 +3,6 @@ from typing import *
3
3
 
4
4
  import setdoc
5
5
 
6
- from v440._utils import utils
7
6
  from v440._utils.BaseList import BaseList
8
7
 
9
8
  __all__ = ["VList"]
@@ -0,0 +1,9 @@
1
+ [phases]
2
+ alpha = "a"
3
+ a = "a"
4
+ beta = "b"
5
+ b = "b"
6
+ preview = "rc"
7
+ pre = "rc"
8
+ c = "rc"
9
+ rc = "rc"
@@ -1,6 +1,5 @@
1
1
  from __future__ import annotations
2
2
 
3
- import functools
4
3
  from typing import *
5
4
 
6
5
  import setdoc
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: v440
3
- Version: 2.0.0.dev55
3
+ Version: 2.0.0.dev56
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)
@@ -1,9 +0,0 @@
1
- [phases]
2
- alpha="a"
3
- a="a"
4
- beta="b"
5
- b="b"
6
- preview="rc"
7
- pre="rc"
8
- c="rc"
9
- rc="rc"
File without changes
File without changes
File without changes
File without changes