3
0
Fork 0

Compare commits

...

2 commits

3 changed files with 12 additions and 2 deletions

View file

@ -5,6 +5,12 @@ All notable changes to wuttaweb will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## v0.21.5 (2025-02-21)
### Fix
- avoid newer `EnumType` for python <= 3.10
## v0.21.4 (2025-02-21)
### Fix

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project]
name = "WuttaWeb"
version = "0.21.4"
version = "0.21.5"
description = "Web App for Wutta Framework"
readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]

View file

@ -27,7 +27,11 @@ Grid Filters
import datetime
import logging
from collections import OrderedDict
from enum import EnumType
try:
from enum import EnumType
except ImportError: # pragma: no cover
# nb. python <= 3.10
from enum import EnumMeta as EnumType
import sqlalchemy as sa