Skip to content

Commit

Permalink
Release 5.8.9
Browse files Browse the repository at this point in the history
#### Changelog:
* Feature(backend): Support Python 3.12.
  • Loading branch information
Sergei Kliuikov committed Nov 3, 2023
1 parent 9065fb9 commit cdf05d2
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 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-v2
image: registry.gitlab.com/vstconsulting/images:ubuntu-v3
cache: &global_cache
paths:
- node_modules/
Expand All @@ -25,7 +25,7 @@ stages:

.branch_tests_template: &branch_tests
stage: test
image: registry.gitlab.com/vstconsulting/images:ubuntu-v2
image: registry.gitlab.com/vstconsulting/images:ubuntu-v3
coverage: '/\d+\%\s*$/'
variables:
TOX_ENVS: ""
Expand Down Expand Up @@ -83,7 +83,7 @@ functional_test:
- TOX_ENVS:
- py38-django42-install
- TOX_ENVS:
- py311-django42-coverage
- py312-django42-coverage

js_tests:
<<: *branch_js_tests
Expand Down Expand Up @@ -128,7 +128,7 @@ release:

release_pypi:
stage: release
image: registry.gitlab.com/vstconsulting/images:ubuntu-v2
image: registry.gitlab.com/vstconsulting/images:ubuntu-v3
artifacts:
reports:
dotenv: variables.env
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Internet :: WWW/HTTP",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Main packages
configparserc~=2.0.0
configparserc~=2.0.2
Markdown~=3.5.1
django-environ~=0.11.2

Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = flake,mypy,pylint,bandit,py311-django42-coverage,py38-django42-install,builddoc
envlist = flake,mypy,pylint,bandit,py312-django42-coverage,py38-django42-install,builddoc
skipsdist = True
allowlist_externals =
rm
Expand Down Expand Up @@ -58,11 +58,11 @@ commands =
pip uninstall vstutils -y
rm -rf ../.eggs ../build {envdir}/dist
deps =
pip~=21.2.2
pip~=23.3.1
wheel
build
setuptools
pysqlite3-binary~=0.5.0
pysqlite3-binary~=0.5.2post1
install: jsmin~=3.0.0

[testenv:flake]
Expand Down
2 changes: 1 addition & 1 deletion tox_build.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38-build,py311-wheel,auditwheel
envlist = py38-build,py31{1,2}-wheel,auditwheel
skipsdist = True

[testenv]
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.8'
__version__: str = '5.8.9'

0 comments on commit cdf05d2

Please sign in to comment.