diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 59acdef1..d4228fdd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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/ @@ -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: "" diff --git a/pyproject.toml b/pyproject.toml index e32c98b7..755b8cfc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", diff --git a/requirements.txt b/requirements.txt index 49921c2b..11aa39a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # Main packages -configparserc~=2.0.2 +configparserc~=3.0.1 Markdown~=3.7 django-environ~=0.11.2 @@ -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 diff --git a/tox.ini b/tox.ini index 963b10c5..ccedc1a4 100644 --- a/tox.ini +++ b/tox.ini @@ -63,7 +63,6 @@ deps = wheel build setuptools - pysqlite3-binary~=0.5.2post1 install: jsmin~=3.0.0 [testenv:flake] diff --git a/vstutils/__init__.py b/vstutils/__init__.py index dfbe9d55..08a9a550 100644 --- a/vstutils/__init__.py +++ b/vstutils/__init__.py @@ -1,2 +1,2 @@ # pylint: disable=django-not-available -__version__: str = '5.11.6' +__version__: str = '5.11.7' diff --git a/vstutils/settings.py b/vstutils/settings.py index f4f4bfeb..96696a8e 100644 --- a/vstutils/settings.py +++ b/vstutils/settings.py @@ -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