From f2fe9c576eb97d56d487cf352133c8550d2931d6 Mon Sep 17 00:00:00 2001 From: Thanushi Peiris <54516770+thanushipeiris@users.noreply.github.com> Date: Wed, 20 Apr 2022 22:39:54 +1000 Subject: [PATCH 1/4] removed python 7.7, added 3.10 --- .github/workflows/test_and_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index b037687..7d54bb2 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.9, 3.10] steps: - uses: actions/checkout@v2 From 71f32c30b1dcfdc0fa69bc0899bee6d466901ee1 Mon Sep 17 00:00:00 2001 From: Thanushi Peiris <54516770+thanushipeiris@users.noreply.github.com> Date: Wed, 20 Apr 2022 22:46:55 +1000 Subject: [PATCH 2/4] added quotes --- .github/workflows/test_and_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 7d54bb2..cde08bd 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: [3.8, 3.9, 3.10] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 From d5ac53b1c8dc80128fdfdfe40859543749fc3ef1 Mon Sep 17 00:00:00 2001 From: Thanushi Peiris <54516770+thanushipeiris@users.noreply.github.com> Date: Wed, 20 Apr 2022 23:03:23 +1000 Subject: [PATCH 3/4] tox.ini changed --- .github/workflows/test_and_deploy.yml | 3 +-- tox.ini | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index cde08bd..56527c8 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -23,11 +23,10 @@ jobs: strategy: matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.8", "3.9", "3.10"] + python-version: ['3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: diff --git a/tox.ini b/tox.ini index 181f1dc..eefc10d 100644 --- a/tox.ini +++ b/tox.ini @@ -4,9 +4,9 @@ envlist = py{37,38,39}-{linux,macos,windows} [gh-actions] python = - 3.7: py37 3.8: py38 3.9: py39 + 3.10: py310 [gh-actions:env] PLATFORM = From 20c1c537e5152900565ec043d0f0c81f316d4dea Mon Sep 17 00:00:00 2001 From: Thanushi Peiris <54516770+thanushipeiris@users.noreply.github.com> Date: Wed, 20 Apr 2022 23:11:07 +1000 Subject: [PATCH 4/4] setup.cfg, tox.ini changes --- setup.cfg | 3 +-- tox.ini | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 1481963..0b7219f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,7 +14,6 @@ classifiers = Topic :: Software Development :: Testing Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 @@ -34,7 +33,7 @@ install_requires = scikit-image magicgui>=0.3.7 toolz -python_requires = >=3.7 +python_requires = >=3.8 [options.packages.find] where = src diff --git a/tox.ini b/tox.ini index eefc10d..08e49f7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ # For more information about tox, see https://tox.readthedocs.io/en/latest/ [tox] -envlist = py{37,38,39}-{linux,macos,windows} +envlist = py{38,39,310}-{linux,macos,windows} [gh-actions] python =