- Only test Python 3.10

This commit is contained in:
Wim Pomp
2023-03-31 13:09:57 +02:00
parent 332eaab6d5
commit f68afd0a1b
3 changed files with 6 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
python-version: ["3.8", "3.10"] python-version: ["3.10"]
os: [ubuntu-20.04, windows-2019, macOS-11] os: [ubuntu-20.04, windows-2019, macOS-11]
steps: steps:
@@ -16,8 +16,7 @@ jobs:
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install
run: | run: pip install .[test]
pip install .[test]
- name: Test with pytest - name: Test with pytest
run: pytest run: pytest

View File

@@ -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 # Tiffwrite
Exploiting [tifffile](https://pypi.org/project/tifffile/) in parallel to write BioFormats/ImageJ compatible tiffs with Exploiting [tifffile](https://pypi.org/project/tifffile/) in parallel to write BioFormats/ImageJ compatible tiffs with
good compression. good compression.

View File

@@ -3,15 +3,10 @@ name = "tiffwrite"
version = "2023.3.0" version = "2023.3.0"
description = "Parallel tiff writer compatible with ImageJ." description = "Parallel tiff writer compatible with ImageJ."
authors = ["Wim Pomp, Lenstra lab NKI <w.pomp@nki.nl>"] authors = ["Wim Pomp, Lenstra lab NKI <w.pomp@nki.nl>"]
license = "GPLv3" license = "GPL-3.0-or-later"
readme = "README.md" readme = "README.md"
packages = [{include = "tiffwrite"}] packages = [{include = "tiffwrite"}]
repository = "https://github.com/wimpomp/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] [tool.poetry.dependencies]
python = "^3.7" python = "^3.7"