From 66fcafc1fd4a1ca5cc215106afcaeaf3783b8f71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20Andr=C3=A9s?= Date: Sun, 3 Nov 2024 02:53:38 +0100 Subject: [PATCH] chore(bibliograpy): remove python 3.9 support + update doc --- bibliograpy/.gitlab-ci.yml | 1 - bibliograpy/docs/index.md | 2 +- bibliograpy/pyproject.toml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bibliograpy/.gitlab-ci.yml b/bibliograpy/.gitlab-ci.yml index 2ecadc5..7ba0ea5 100644 --- a/bibliograpy/.gitlab-ci.yml +++ b/bibliograpy/.gitlab-ci.yml @@ -81,7 +81,6 @@ python-version-support:bibliograpy: - . resources/check_py_version.sh 3.12 || exit 1 - . resources/check_py_version.sh 3.11 || exit 1 - . resources/check_py_version.sh 3.10 || exit 1 - - . resources/check_py_version.sh 3.9 || exit 1 demo:bibliograpy: stage: demo diff --git a/bibliograpy/docs/index.md b/bibliograpy/docs/index.md index 4646036..586dedf 100644 --- a/bibliograpy/docs/index.md +++ b/bibliograpy/docs/index.md @@ -4,7 +4,7 @@ ## Requirements and Installation -`bibliograpy` requires `python>=9` and uses `pyyaml`. +`bibliograpy` requires `python>=10` and uses `pyyaml` and `bibtexparser`. It can be installed using pip: diff --git a/bibliograpy/pyproject.toml b/bibliograpy/pyproject.toml index a8e5d0e..a8ec20f 100644 --- a/bibliograpy/pyproject.toml +++ b/bibliograpy/pyproject.toml @@ -11,7 +11,7 @@ authors = [ description = "" readme = "README.md" license = {file = "LICENSE.md"} -requires-python = ">=3.9" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent",