Change base python to 3.12 and pin pydantic to V1

This commit is contained in:
Anton Petrov 2023-10-05 11:27:43 +03:00
parent 03ee0b43c2
commit a4d30ba0d1
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ mypy
pyyaml pyyaml
httpx httpx
fastapi fastapi
pydantic pydantic==1.10.13
numpy numpy
scipy scipy
boto3 boto3

View File

@ -16,7 +16,7 @@ deps=
mypy_boto3_s3 mypy_boto3_s3
extras= extras=
yaml yaml
pydantic pydantic<2
flask flask
aiohttp aiohttp
commands = pytest -c tests/.configs/pytest.ini commands = pytest -c tests/.configs/pytest.ini
@ -24,7 +24,7 @@ python_files = test_*_py3*.py
[testenv:coveralls] [testenv:coveralls]
passenv = GITHUB_*, COVERALLS_* passenv = GITHUB_*, COVERALLS_*
basepython=python3.11 basepython=python3.12
usedevelop=True usedevelop=True
deps= deps=
{[testenv]deps} {[testenv]deps}