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