Compare commits
2 commits
f4e1cc0650
...
3274553557
Author | SHA1 | Date | |
---|---|---|---|
|
3274553557 | ||
|
406cde5047 |
|
@ -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/)
|
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).
|
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)
|
## v0.21.4 (2025-02-21)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "WuttaWeb"
|
name = "WuttaWeb"
|
||||||
version = "0.21.4"
|
version = "0.21.5"
|
||||||
description = "Web App for Wutta Framework"
|
description = "Web App for Wutta Framework"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
||||||
|
|
|
@ -27,7 +27,11 @@ Grid Filters
|
||||||
import datetime
|
import datetime
|
||||||
import logging
|
import logging
|
||||||
from collections import OrderedDict
|
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
|
import sqlalchemy as sa
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue