Skip to content

Commit

Permalink
Remove support for Python 3.8 and add 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Oct 9, 2023
1 parent ee457cd commit 8249cbd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For more details, see the rest of this document.

## Development environment

GeoUtils currently supports only Python versions of 3.8 and higher, see `environment.yml` for detailed dependencies.
GeoUtils currently supports only Python versions of 3.9 and higher, see `environment.yml` for detailed dependencies.

### Setup

Expand Down
2 changes: 1 addition & 1 deletion dev-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: geoutils-dev
channels:
- conda-forge
dependencies:
- python>=3.8
- python>=3.9
- geopandas>=0.12.0
- matplotlib
- pyproj
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: geoutils
channels:
- conda-forge
dependencies:
- python>=3.8
- python>=3.9
- geopandas>=0.12.0
- matplotlib
- pyproj
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ classifiers =
Topic :: Scientific/Engineering :: Image Processing
Topic :: Scientific/Engineering :: Information Analysis
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries :: Python Modules
Typing :: Typed
Expand All @@ -34,7 +34,7 @@ packages = find:
scripts = bin/geoviewer.py
zip_safe = False # https://mypy.readthedocs.io/en/stable/installed_packages.html
include_package_data = True
python_requires = >=3.8
python_requires = >=3.9
# Avoid pinning dependencies in requirements.txt (which we don't do anyways, and we rely mostly on Conda)
# (https://caremad.io/posts/2013/07/setup-vs-requirement/, https://github.com/pypa/setuptools/issues/1951)
install_requires = file: requirements.txt
Expand Down

0 comments on commit 8249cbd

Please sign in to comment.