Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
EnMAP
sensormapgeo
Commits
9a6b23dd
Commit
9a6b23dd
authored
Nov 15, 2022
by
Daniel Scheffler
Browse files
Merge branch 'maintenance/drop_py36' into 'main'
Maintenance/drop py36 See merge request
!11
parents
1eff36d3
5058ba98
Pipeline
#52964
passed with stages
in 2 minutes and 43 seconds
Changes
7
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
.travis.yml
View file @
9a6b23dd
...
...
@@ -2,10 +2,10 @@
language
:
python
python
:
-
3.10
-
3.9
-
3.8
-
3.7
-
3.6
-
3.5
# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install
:
pip install -U tox-travis
...
...
CONTRIBUTING.rst
View file @
9a6b23dd
...
...
@@ -102,7 +102,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 3.
5
, 3.
6
, 3.
7 and
3.
8,
and for PyPy. Check
3. The pull request should work for Python 3.
7
, 3.
8
, 3.
9,
3.
10
and for PyPy. Check
https://travis-ci.org/danschef/sensormapgeo/pull_requests
and make sure that the tests pass for all supported Python versions.
...
...
HISTORY.rst
View file @
9a6b23dd
...
...
@@ -2,6 +2,15 @@
History
=======
0.7.0 (2022-11-15)
------------------
* Renamed master branch to main.
* !11`_: Dropped Python 3.6 support due to EOL status.
.. _!11: https://git.gfz-potsdam.de/EnMAP/sensormapgeo/-/merge_requests/11
0.6.2 (2022-03-10)
------------------
...
...
docs/installation.rst
View file @
9a6b23dd
...
...
@@ -62,8 +62,8 @@ you through the process.
.. note::
sensormapgeo has been tested with Python 3.
6
+.,
i.e., should be fully compatible to all Python versions from 3.
6
onwards.
sensormapgeo has been tested with Python 3.
7
+.,
i.e., should be fully compatible to all Python versions from 3.
7
onwards.
.. _pip: https://pip.pypa.io
...
...
sensormapgeo/version.py
View file @
9a6b23dd
...
...
@@ -24,6 +24,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
__version__
=
'0.
6.2
'
__versionalias__
=
'2022
0310
.01'
__version__
=
'0.
7.0
'
__versionalias__
=
'2022
1115
.01'
__author__
=
'Daniel Scheffler'
setup.py
View file @
9a6b23dd
...
...
@@ -54,10 +54,10 @@ setup(
'License :: OSI Approved :: Apache Software License'
,
'Natural Language :: English'
,
'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.9'
,
'Programming Language :: Python :: 3.10'
],
description
=
"A package for transforming remote sensing images between sensor and map geometry."
,
install_requires
=
requirements
,
...
...
@@ -67,7 +67,7 @@ setup(
keywords
=
'sensormapgeo'
,
name
=
'sensormapgeo'
,
packages
=
find_packages
(
exclude
=
[
'tests*'
]),
python_requires
=
'>=3.
6
'
,
python_requires
=
'>=3.
7
'
,
setup_requires
=
setup_requirements
,
test_suite
=
'tests'
,
tests_require
=
test_requirements
,
...
...
tox.ini
View file @
9a6b23dd
[tox]
envlist
=
py3
5
, py3
6
, py3
7
, py3
8
, flake8
envlist
=
py3
7
, py3
8
, py3
9
, py3
10
, flake8
[travis]
python
=
3.10:
py310
3.9:
py39
3.8:
py38
3.7:
py37
3.6:
py36
3.5:
py35
[testenv:flake8]
basepython
=
python
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment