pybare 1.2.0__tar.gz → 1.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 (27) hide show
  1. {pybare-1.2.0/pybare.egg-info → pybare-1.2.1}/PKG-INFO +1 -1
  2. {pybare-1.2.0 → pybare-1.2.1}/bare/misc.py +1 -5
  3. {pybare-1.2.0 → pybare-1.2.1/pybare.egg-info}/PKG-INFO +1 -1
  4. {pybare-1.2.0 → pybare-1.2.1}/setup.py +1 -1
  5. {pybare-1.2.0 → pybare-1.2.1}/LICENSE +0 -0
  6. {pybare-1.2.0 → pybare-1.2.1}/README.md +0 -0
  7. {pybare-1.2.0 → pybare-1.2.1}/bare/__init__.py +0 -0
  8. {pybare-1.2.0 → pybare-1.2.1}/bare/barearray.py +0 -0
  9. {pybare-1.2.0 → pybare-1.2.1}/bare/barestruct.py +0 -0
  10. {pybare-1.2.0 → pybare-1.2.1}/bare/baretype.py +0 -0
  11. {pybare-1.2.0 → pybare-1.2.1}/bare/data.py +0 -0
  12. {pybare-1.2.0 → pybare-1.2.1}/bare/map.py +0 -0
  13. {pybare-1.2.0 → pybare-1.2.1}/bare/number.py +0 -0
  14. {pybare-1.2.0 → pybare-1.2.1}/bare/test_barearray.py +0 -0
  15. {pybare-1.2.0 → pybare-1.2.1}/bare/test_barestruct.py +0 -0
  16. {pybare-1.2.0 → pybare-1.2.1}/bare/test_data.py +0 -0
  17. {pybare-1.2.0 → pybare-1.2.1}/bare/test_encoder.py +0 -0
  18. {pybare-1.2.0 → pybare-1.2.1}/bare/test_map.py +0 -0
  19. {pybare-1.2.0 → pybare-1.2.1}/bare/test_misc.py +0 -0
  20. {pybare-1.2.0 → pybare-1.2.1}/bare/test_number.py +0 -0
  21. {pybare-1.2.0 → pybare-1.2.1}/bare/test_union.py +0 -0
  22. {pybare-1.2.0 → pybare-1.2.1}/bare/union.py +0 -0
  23. {pybare-1.2.0 → pybare-1.2.1}/bare/util.py +0 -0
  24. {pybare-1.2.0 → pybare-1.2.1}/pybare.egg-info/SOURCES.txt +0 -0
  25. {pybare-1.2.0 → pybare-1.2.1}/pybare.egg-info/dependency_links.txt +0 -0
  26. {pybare-1.2.0 → pybare-1.2.1}/pybare.egg-info/top_level.txt +0 -0
  27. {pybare-1.2.0 → pybare-1.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pybare
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: A declarative implementation of BARE for Python
5
5
  Home-page: https://sr.ht/~chiefnoah/pybare/
6
6
  Author: Noah Pederson
@@ -8,11 +8,7 @@ from .number import UInt
8
8
  __all__ = ["Enum", "Void", "Str"]
9
9
 
10
10
 
11
- class BAREEnumMeta(_ProtocolMeta, EnumType):
12
- ...
13
-
14
-
15
- class Enum(BAREType[int], IntEnum, metaclass=BAREEnumMeta):
11
+ class Enum(IntEnum, metaclass=EnumType):
16
12
  """
17
13
  A BARE enum type. It is a subclass of `IntEnum` and is used to represent
18
14
  a BARE enum type.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pybare
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: A declarative implementation of BARE for Python
5
5
  Home-page: https://sr.ht/~chiefnoah/pybare/
6
6
  Author: Noah Pederson
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="pybare", # Replace with your own username
8
- version="1.2.0",
8
+ version="1.2.1",
9
9
  author="Noah Pederson",
10
10
  author_email="noah@packetlost.dev",
11
11
  description="A declarative implementation of BARE for Python",
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
File without changes
File without changes
File without changes