Skip to content

Commit

Permalink
rasterio no likey python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
wboykinm committed Dec 16, 2024
1 parent 92c17de commit 0b962c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
global:
CIBW_SKIP: "cp27* cp35* pp* *-win32 *-manylinux_i686"
CIBW_BUILD: "cp38-* cp39-* cp310-*"
CIBW_SKIP: "cp27* cp35* cp38-* pp* *-win32 *-manylinux_i686"
CIBW_BUILD: "cp39-* cp310-* cp311-*"

matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,16 @@ def read(fname):
version=version,
description="Color correction plugin for rasterio",
long_description=long_description,
python_requires=">=3.8",
python_requires=">=3.9",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
"Programming Language :: Python :: 3.11"
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering :: GIS",
Expand Down

0 comments on commit 0b962c3

Please sign in to comment.