-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drop support for python < 3.8 , add support for python 3.10/3.11
- Loading branch information
1 parent
823b46e
commit 5cdefbe
Showing
1 changed file
with
2 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,12 +23,10 @@ | |
description="Read and Write OME-TIFFs in Python", | ||
packages=["pyometiff"], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
# "Operating System :: Os Independent", | ||
], | ||
|
@@ -41,5 +39,5 @@ | |
url="https://github.com/filippocastelli/pyometiff", | ||
author="Filippo Maria Castelli", | ||
author_email="[email protected]", | ||
python_requires=">=3.6", | ||
python_requires=">=3.8", | ||
) |