Skip to content

Commit

Permalink
Release 5.8.10
Browse files Browse the repository at this point in the history
#### Changelog:
* Fix(deps): Support Python 3.12 for uwsgi.
* Chore(deps): Update uvicorn, ormsgpack and django patch.
* Chore(deps): Update flake8 checks plugins.
  • Loading branch information
Sergei Kliuikov committed Nov 7, 2023
1 parent 05882a0 commit 22dff94
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions requirements-rtd.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-rrequirements.txt
-rrequirements-doc.txt
-rrequirements-rpc.txt
django~=4.2.6
httpx
django~=4.2.7
httpx>=0.25.1
typing-extensions
sphinx-intl~=2.1.0
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ djangorestframework~=3.14.0
drf-yasg==1.21.7
django-filter==23.3
drf_orjson_renderer==1.7.1
ormsgpack~=1.3.0
ormsgpack~=1.4.0
pyyaml~=6.0.1

# web server
uvicorn~=0.23.2
pyuwsgi==2.0.22
uvicorn~=0.24.0.post1
pyuwsgi==2.0.23
fastapi~=0.104.1
aiofiles==23.2.1

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
'vstutils/static/bundle/.*\.js$'
],
install_requires=[
"django~=" + (os.environ.get('DJANGO_DEP', "") or "4.2.6"),
"django~=" + (os.environ.get('DJANGO_DEP', "") or "4.2.7"),
]
+ requirements
+ load_requirements('requirements-doc.txt'),
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ deps =
[testenv:flake]
changedir = ./
deps =
flake8==6.0.0
flake8-bugbear==23.7.10
flake8==6.1.0
flake8-bugbear==23.9.16
flake8-commas==2.1.0
flake8-comprehensions==3.14.0
flake8-django==1.3.0
flake8-django==1.4.0
flake8-executable==2.1.3
flake8-functions==0.0.8
flake8-import-order==0.18.2
Expand Down
2 changes: 1 addition & 1 deletion vstutils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# pylint: disable=django-not-available
__version__: str = '5.8.9post1'
__version__: str = '5.8.10'

0 comments on commit 22dff94

Please sign in to comment.