Skip to content

Commit

Permalink
Release 5.11.7
Browse files Browse the repository at this point in the history
### Changelog:
- Feature(backend): Add support Python 3.13.
- Chore(backend): Update ormsgpack version.
  • Loading branch information
onegreyonewhite committed Nov 8, 2024
1 parent bf1b172 commit b9e465f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default:
image: registry.gitlab.com/vstconsulting/images:ubuntu-v3
image: registry.gitlab.com/vstconsulting/images:ubuntu-v4
cache: &global_cache
paths:
- node_modules/
Expand All @@ -24,7 +24,7 @@ stages:

.branch_tests_template: &branch_tests
stage: test
image: registry.gitlab.com/vstconsulting/images:ubuntu-v3
image: registry.gitlab.com/vstconsulting/images:ubuntu-v4
coverage: '/\d+\%\s*$/'
variables:
TOX_ENVS: ""
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: User Interfaces",
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Main packages
configparserc~=2.0.2
configparserc~=3.0.1
Markdown~=3.7
django-environ~=0.11.2

Expand All @@ -8,7 +8,7 @@ djangorestframework~=3.15.2
drf-yasg==1.21.8
django-filter==24.3
drf_orjson_renderer==1.7.1
ormsgpack~=1.5.0
ormsgpack~=1.6.0
pyyaml~=6.0.2

# web server
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ deps =
wheel
build
setuptools
pysqlite3-binary~=0.5.2post1
install: jsmin~=3.0.0

[testenv:flake]
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.11.6'
__version__: str = '5.11.7'
2 changes: 1 addition & 1 deletion vstutils/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -1658,7 +1658,7 @@ class OauthServerClientConfig(_t.TypedDict):
CENTRIFUGO_CLIENT_KWARGS = {}
try:
__import__('pysqlite3')
sys.modules['sqlite3'] = sys.modules.pop('pysqlite3')
sys.modules['sqlite3'] = sys.modules.pop('pysqlite3') # nocv
except ImportError: # nocv
pass

Expand Down

0 comments on commit b9e465f

Please sign in to comment.