From 5179311168748dad96e004e01dee1d313671c1e2 Mon Sep 17 00:00:00 2001 From: Matthew Evans Date: Thu, 10 Aug 2023 21:09:20 +0100 Subject: [PATCH] Bump CI Python version --- .github/workflows/ci.yml | 6 +++--- .readthedocs.yaml | 2 +- pydatalab/setup.py | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c24c1fb48..2e295f4a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,10 +21,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.9 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: "3.9" + python-version: "3.10" - name: Install dependencies working-directory: ./pydatalab @@ -56,7 +56,7 @@ jobs: fail-fast: false max-parallel: 2 matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10"] steps: - uses: actions/checkout@v3 diff --git a/.readthedocs.yaml b/.readthedocs.yaml index e845dc3b1..ea9534bf1 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -5,7 +5,7 @@ formats: [] build: os: ubuntu-22.04 tools: - python: "3.9" + python: "3.10" jobs: pre_install: diff --git a/pydatalab/setup.py b/pydatalab/setup.py index ef3b0d0e7..cfdb42ca6 100644 --- a/pydatalab/setup.py +++ b/pydatalab/setup.py @@ -21,4 +21,5 @@ url="https://github.com/the-grey-group/datalab", include_package_data=True, packages=find_packages(), + python_requires=">=3.9", )