- Only test Python 3.10
This commit is contained in:
7
.github/workflows/pytest.yml
vendored
7
.github/workflows/pytest.yml
vendored
@@ -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
|
||||
@@ -1,3 +1,5 @@
|
||||
[](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.
|
||||
|
||||
@@ -3,15 +3,10 @@ name = "tiffwrite"
|
||||
version = "2023.3.0"
|
||||
description = "Parallel tiff writer compatible with ImageJ."
|
||||
authors = ["Wim Pomp, Lenstra lab NKI <w.pomp@nki.nl>"]
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user