From deebaa404d02709de7b4b246d13e61c2c4d44e0c Mon Sep 17 00:00:00 2001 From: Manon Blanco <blanco@teklia.com> Date: Tue, 20 Feb 2024 13:27:02 +0000 Subject: [PATCH] Bump to support py3.10 + only --- .gitlab-ci.yml | 4 ++-- setup.py | 2 +- tox.ini | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed73086..4d8f6f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ lint: - pre-commit run -a tests: - image: python:3.8 + image: python:3.10 stage: test cache: @@ -52,7 +52,7 @@ tests: deploy-pypi: stage: deploy - image: python:3.8 + image: python:3.10 only: - tags diff --git a/setup.py b/setup.py index 80ab0ec..4696287 100755 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( description="Teklia Document Processing", author="Teklia", author_email="team@teklia.com", - python_requires=">=3.8", + python_requires=">=3.10", install_requires=install_requires, packages=find_packages(), include_package_data=True, diff --git a/tox.ini b/tox.ini index b33c437..57c9f09 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38 +envlist = py310 [testenv] deps = -- GitLab