Skip to content

Commit

Permalink
Issue #460 drop Python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Aug 28, 2023
1 parent 30eb4b4 commit fbfa3ef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
- "3.11"
# Additional special cases (see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-adding-configurations)
include:
- os: "ubuntu-20.04"
python-version: "3.6"
- os: "windows-latest"
python-version: "3.11"
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

- Bumped minimal supported Python version to 3.7 ([#460](https://github.com/Open-EO/openeo-python-client/issues/460))

### Fixed


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ examples and in-depth discussion.

## Installation

Python 3.6 or higher is required.
Python 3.7 or higher is required.
As always, it is recommended to work in some kind of virtual environment
(using `venv`, `virtualenv`, conda, docker, ...)
to install the `openeo` package and its dependencies:
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The package is a pure Python implementation and its dependencies are carefully c
Basic install
=============

At least *Python 3.6* is recommended.
At least *Python 3.7* is required (since version 0.23.0).
Also, it is recommended to work in a some kind of *virtual environment* (``venv``, ``conda``, ...)
to avoid polluting the base install of Python on your operating system
or introducing conflicts with other applications.
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Open-EO/openeo-python-client",
python_requires=">=3.6",
python_requires=">=3.7",
packages=find_packages(include=["openeo*"]),
include_package_data=True,
tests_require=tests_require,
Expand Down Expand Up @@ -88,7 +88,6 @@
"console_scripts": ["openeo-auth=openeo.rest.auth.cli:main"],
},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit fbfa3ef

Please sign in to comment.