From f68afd0a1be10688e0774ed510f454aee0ba37b0 Mon Sep 17 00:00:00 2001 From: Wim Pomp Date: Fri, 31 Mar 2023 13:09:57 +0200 Subject: [PATCH] - Only test Python 3.10 --- .github/workflows/pytest.yml | 7 +++---- README.md | 2 ++ pyproject.toml | 7 +------ 3 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 070b780..1311849 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ["3.8", "3.10"] + python-version: ["3.10"] os: [ubuntu-20.04, windows-2019, macOS-11] steps: @@ -16,8 +16,7 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - pip install .[test] + - name: Install + run: pip install .[test] - name: Test with pytest run: pytest \ No newline at end of file diff --git a/README.md b/README.md index 50bf313..af1980a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![pytest](https://github.com/wimpomp/tiffwrite/actions/workflows/pytest.yml/badge.svg)](https://github.com/wimpomp/tiffwrite/actions/workflows/pytest.yml) + # Tiffwrite Exploiting [tifffile](https://pypi.org/project/tifffile/) in parallel to write BioFormats/ImageJ compatible tiffs with good compression. diff --git a/pyproject.toml b/pyproject.toml index d473cb0..59660f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,15 +3,10 @@ name = "tiffwrite" version = "2023.3.0" description = "Parallel tiff writer compatible with ImageJ." authors = ["Wim Pomp, Lenstra lab NKI "] -license = "GPLv3" +license = "GPL-3.0-or-later" readme = "README.md" packages = [{include = "tiffwrite"}] repository = "https://github.com/wimpomp/tiffwrite" -classifiers = [ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", - "Operating System :: OS Independent", -] [tool.poetry.dependencies] python = "^3.7"