From b617b83f26dee294a77d69c9fcb594923c3bad5d Mon Sep 17 00:00:00 2001 From: Lucas PASCAL Date: Mon, 5 Feb 2024 14:46:40 +0100 Subject: [PATCH] [ci][add] Testing package on Python version 3.8 -> 3.11 --- .github/workflows/build_and_tests.yml | 4 +++- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_tests.yml b/.github/workflows/build_and_tests.yml index 54ac976..850b246 100644 --- a/.github/workflows/build_and_tests.yml +++ b/.github/workflows/build_and_tests.yml @@ -21,8 +21,10 @@ jobs: build_install_test: name: Build, install and test the Ledgered Python package runs-on: ubuntu-latest + strategy: + matrix: + python_version: ['3.8', '3.9', '3.10', '3.11'] steps: - - name: Clone uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index c105a4a..e83f047 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,10 +16,10 @@ readme = { file = "README.md", content-type = "text/markdown" } license = { file = "LICENSE" } classifiers = [ "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Operating System :: POSIX :: Linux", "Operating System :: Microsoft :: Windows", "Operating System :: MacOS :: MacOS X",