bugfix
This commit is contained in:
parent
85693aa68f
commit
6eda9a96c9
18
README.md
18
README.md
@ -19,6 +19,24 @@ ahserver capabilities:
|
||||
+ '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
|
||||
|
||||
## 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
|
||||
|
||||
see requirements.txt
|
||||
|
Loading…
Reference in New Issue
Block a user