From 8b12b5723cd2d8174261c7a8ecdf8b37b68fcd90 Mon Sep 17 00:00:00 2001 From: Tony-HYX <605698554@qq.com> Date: Wed, 20 Dec 2023 22:00:30 +0800 Subject: [PATCH] [ENH] Update python version --- .github/workflows/build-and-test.yaml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index dee440a..35cbc78 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: [3.8, 3.9] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11] steps: - uses: actions/checkout@v2 - name: Set up Python diff --git a/setup.py b/setup.py index 0a6f9e0..14bfbdf 100644 --- a/setup.py +++ b/setup.py @@ -11,8 +11,8 @@ def read(rel_path: str) -> str: # Package meta-data. NAME = "abl" -DESCRIPTION = "abl package project" -REQUIRES_PYTHON = ">=3.8.0" +DESCRIPTION = "abductive learning package project" +REQUIRES_PYTHON = ">=3.6.0" VERSION = None