Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test-lang-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
fail-fast: false
matrix:
python:
- '3.11'
- '3.10'
- '3.9'
- '3.8'
Expand Down Expand Up @@ -86,6 +87,7 @@ jobs:
fail-fast: false
matrix:
python:
- '3.11'
- '3.10'
- '3.9'
- '3.8'
Expand Down
3 changes: 3 additions & 0 deletions lang/py/avro/compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ class SchemaType(str, Enum):
STRING = "string"
UNION = "union"

def __str__(self):
return self.value


class SchemaCompatibilityType(Enum):
compatible = "compatible"
Expand Down
3 changes: 2 additions & 1 deletion lang/py/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ keywords =
author = Apache Avro
author_email = [email protected]
url = https://avro.apache.org/
license_file = avro/LICENSE
license_files = avro/LICENSE
license = Apache License 2.0
classifiers =
License :: OSI Approved :: Apache Software License
Expand All @@ -38,6 +38,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Development Status :: 5 - Production/Stable

[bdist_wheel]
Expand Down