diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 311fbd22548823f273b9b3a641ab5f12fd697560..36d7832f81b3f83ea8615925f2808e70c1499e24 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,9 +8,12 @@ test: parallel: matrix: - PYTHON_VERSION: [ + "3.8-slim", "3.9-slim", "3.10-slim", "3.11-slim", + "3.12-slim", + "latest-slim", ] @@ -18,7 +21,7 @@ test: upload: stage: deploy needs: ['test', ] - image: python:3.11 + image: python:latest script: - pip install -r requirements-dev.txt - python setup.py sdist diff --git a/setup.cfg b/setup.cfg index e4d5ec8f1fb3e487debcde7b793a43af131c0202..3ad0c39f788713d64072c3f47962a26ba560688e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-kubernetes-probes -version = 1.0 +version = 1.0.1 description = A Django app to expose probes for kubernetes long_description = file: README.rst url = https://www.example.com/ @@ -17,6 +17,8 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 @@ -26,6 +28,6 @@ classifiers = [options] include_package_data = true packages = find: -python_requires = >=3.10 +python_requires = >=3.8 install_requires = Django >= X.Y # Replace "X.Y" as appropriate \ No newline at end of file