enumerific 1.0.8__tar.gz → 1.0.9__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.
- {enumerific-1.0.8/source/enumerific.egg-info → enumerific-1.0.9}/PKG-INFO +2 -2
- {enumerific-1.0.8 → enumerific-1.0.9}/README.md +1 -1
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific/extensible.py +2 -1
- enumerific-1.0.9/source/enumerific/version.txt +1 -0
- {enumerific-1.0.8 → enumerific-1.0.9/source/enumerific.egg-info}/PKG-INFO +2 -2
- enumerific-1.0.8/source/enumerific/version.txt +0 -1
- {enumerific-1.0.8 → enumerific-1.0.9}/LICENSE.md +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/pyproject.toml +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/requirements.development.txt +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/requirements.distribution.txt +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/requirements.txt +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/setup.cfg +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific/__init__.py +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific/exceptions.py +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific/logging.py +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific/standard.py +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific.egg-info/SOURCES.txt +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific.egg-info/dependency_links.txt +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific.egg-info/requires.txt +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific.egg-info/top_level.txt +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/source/enumerific.egg-info/zip-safe +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/tests/test_enumerific_library.py +0 -0
- {enumerific-1.0.8 → enumerific-1.0.9}/tests/test_extensible_enums.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: enumerific
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Summary: Simplifies working with Python enums.
|
|
5
5
|
Author: Daniel Sissman
|
|
6
6
|
License-Expression: MIT
|
|
@@ -900,4 +900,4 @@ See the documentation for [PyTest](https://docs.pytest.org/en/latest/) regarding
|
|
|
900
900
|
|
|
901
901
|
### Copyright & License Information
|
|
902
902
|
|
|
903
|
-
Copyright © 2024–
|
|
903
|
+
Copyright © 2024–2026 Daniel Sissman; licensed under the MIT License.
|
|
@@ -870,4 +870,4 @@ See the documentation for [PyTest](https://docs.pytest.org/en/latest/) regarding
|
|
|
870
870
|
|
|
871
871
|
### Copyright & License Information
|
|
872
872
|
|
|
873
|
-
Copyright © 2024–
|
|
873
|
+
Copyright © 2024–2026 Daniel Sissman; licensed under the MIT License.
|
|
@@ -90,6 +90,7 @@ class auto(int, anno):
|
|
|
90
90
|
|
|
91
91
|
start: int = 0
|
|
92
92
|
steps: int = 1
|
|
93
|
+
times: int = 0
|
|
93
94
|
power: int = 0
|
|
94
95
|
value: int = 0
|
|
95
96
|
|
|
@@ -1378,7 +1379,7 @@ class EnumerationMetaClass(type):
|
|
|
1378
1379
|
|
|
1379
1380
|
return self._instance.__name__
|
|
1380
1381
|
|
|
1381
|
-
def register(self, name: str, value: object) -> Enumeration:
|
|
1382
|
+
def register(self, name: str, value: object = auto()) -> Enumeration:
|
|
1382
1383
|
"""The 'register' method supports registering additional enumeration options for
|
|
1383
1384
|
an existing enumeration class. The method accepts the name of the enumeration
|
|
1384
1385
|
option and its corresponding value; these are then mapped into a new enumeration
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.0.9
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: enumerific
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.9
|
|
4
4
|
Summary: Simplifies working with Python enums.
|
|
5
5
|
Author: Daniel Sissman
|
|
6
6
|
License-Expression: MIT
|
|
@@ -900,4 +900,4 @@ See the documentation for [PyTest](https://docs.pytest.org/en/latest/) regarding
|
|
|
900
900
|
|
|
901
901
|
### Copyright & License Information
|
|
902
902
|
|
|
903
|
-
Copyright © 2024–
|
|
903
|
+
Copyright © 2024–2026 Daniel Sissman; licensed under the MIT License.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
1.0.8
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|