This commit is contained in:
yumoqing 2024-11-25 15:16:28 +08:00
parent 85693aa68f
commit 6eda9a96c9

View File

@ -19,6 +19,24 @@ ahserver capabilities:
+ 'xlsxds' files subffix by '.xlsxds' is process as a data source from xlsx file + 'xlsxds' files subffix by '.xlsxds' is process as a data source from xlsx file
+ 'sqlds' files subffixed by '.sqlds' is process as a data source from database via a sql command + 'sqlds' files subffixed by '.sqlds' is process as a data source from database via a sql command
## python3.12 bug fix
We use aioredis, it use distutils, but above 3.12, distutils not exists, so we need to hack it a bit.
### new model
```
pip install packaging
```
need modify files:
* aioredis/exceptions.py
* aioredis/connection.py
```replace aioredis/connection.py line 11 with
from packaging.version import Version as StrictVersion
```
replace aiotedis/exceptions.py 14 line with:
```
class TimeoutError(asyncio.TimeoutError, RedisError):
```
## Requirements ## Requirements
see requirements.txt see requirements.txt