Skip to content
Snippets Groups Projects
Commit 0938f9f5 authored by Daniel Scheffler's avatar Daniel Scheffler
Browse files

Merge branch 'maintenance/drop_37_add_311' into 'main'

Maintenance/drop 37 add 311

See merge request !43
parents 18f43999 024f1782
No related branches found
No related tags found
1 merge request!43Maintenance/drop 37 add 311
Pipeline #61536 passed
......@@ -101,7 +101,7 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 2.6, 2.7, 3.3, 3.4, 3.5 and 3.6, and for PyPy. Check
3. The pull request should work for Python 3.8, 3.9, 3.10, and 3.11. Check
https://travis-ci.org/danschef/geoarray/pull_requests
and make sure that the tests pass for all supported Python versions.
......
......@@ -10,6 +10,7 @@ History
* !40: Added workaround for missing PROJ_DATA environment variable.
* !41: Revised GeoArray.show to be compatible with new versions of holoviews.
* !42: Dropped support for cartopy<0.20 and removed pyepsg requirement as cartopy>=0.20 uses pyproj instead.
* !43: Dropped support for Python 3.7 and added support for Python 3.11.
0.16.1 (16.02.2023)
......
......@@ -85,12 +85,12 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'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'
],
python_requires='>3.7',
python_requires='>=3.8',
test_suite='tests',
tests_require=req_test,
setup_requires=req_setup,
......
......@@ -4,7 +4,7 @@ channels: &id1
- conda-forge
dependencies:
- python=3.*.*
- python>=3.8.*
- pip # avoids that conda uses the wrong pip
- cartopy>=0.20 # older versions require pyepsg
- gdal>=2.1.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment