-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix/remove-dask-process-created-viewers (#10)
* Remove dask cluster creation during image read * Update tests to match new core functionality * Add test for viewer corruption * General admin updates to drop Py36, add pypi classifiers, and README * Remove plugin corruption test * Remove unused scikit image test dep * Optimize memory and initial load by removing the visible param * Don't squeeze data, let napari handle it
- Loading branch information
Jackson Maxfield Brown
authored
Dec 9, 2020
1 parent
ec37bd7
commit 0d859f8
Showing
9 changed files
with
66 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,13 +58,17 @@ | |
|
||
setup( | ||
author="Jackson Maxfield Brown", | ||
author_email="[email protected]", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Framework :: napari", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Visualization", | ||
"Topic :: Scientific/Engineering :: Information Analysis", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
], | ||
|
@@ -83,7 +87,7 @@ | |
keywords="napari, aicsimageio, imaging", | ||
name="napari-aicsimageio", | ||
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*"]), | ||
python_requires=">=3.6", | ||
python_requires=">=3.7", | ||
setup_requires=setup_requirements, | ||
test_suite="napari_aicsimageio/tests", | ||
tests_require=test_requirements, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tox] | ||
skipsdist = True | ||
envlist = py36, py37, py38, lint | ||
envlist = py37, py38, lint | ||
|
||
[testenv:lint] | ||
deps = | ||
|