From 791108e22e101d5353454fa4476e88738addc44f Mon Sep 17 00:00:00 2001 From: Arbitrio Date: Thu, 21 Oct 2021 18:12:39 +0200 Subject: [PATCH 1/2] add python3.10 jobs in ci --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 666443a98..01a667e85 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -42,6 +42,10 @@ jobs: python-version: 3.9 - os: ubuntu-latest python-version: 3.9 + - os: macOS-latest + python-version: "3.10" + - os: ubuntu-latest + python-version: "3.10" env: SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From bfa272f3ee59f6332791d186edddfe222982630b Mon Sep 17 00:00:00 2001 From: Arbitrio Date: Thu, 11 Nov 2021 11:48:37 +0100 Subject: [PATCH 2/2] Add 3.10 references where needed --- README.md | 4 ++-- docs/contributing.rst | 2 +- setup.py | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 64da19c51..cbb54a18c 100644 --- a/README.md +++ b/README.md @@ -48,8 +48,8 @@ | Operating System | Python version | |-------------------|-----------------| -| Linux | | -| MacOs | | +| Linux | | +| MacOs | | | Windows | | --- diff --git a/docs/contributing.rst b/docs/contributing.rst index aac2bfb26..c71f2f8c9 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -111,7 +111,7 @@ Create your local environment Before starting contributing to Histolab, test that your local environment is up and running. Here some steps: -* Create a python 3.7, 3.8 or 3.9 ``virtualenv`` +* Create a python 3.7, 3.8, 3.9 or 3.10 ``virtualenv`` * Activate the env and in the project root run: diff --git a/setup.py b/setup.py index eaa85527e..cd041c01f 100644 --- a/setup.py +++ b/setup.py @@ -64,6 +64,7 @@ def parse_requirements(filename): "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Intended Audience :: Science/Research",