3
0
Fork 0

Compare commits

..

No commits in common. "32745535572bbfd13b949abd8537d2e4104fee51" and "f4e1cc065064f79e96d2217259f8b92deb0dabe3" have entirely different histories.

3 changed files with 2 additions and 12 deletions

View file

@ -5,12 +5,6 @@ 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.5"
version = "0.21.4"
description = "Web App for Wutta Framework"
readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]

View file

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