Skip to content

Commit 10d1b14

Browse files
committed
Drop support for Python 3.7 #578
1 parent 4ce7d78 commit 10d1b14

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.github/workflows/unittests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
# Basic configurations to run on
2222
os: ["ubuntu-latest"]
2323
python-version:
24-
- "3.7"
2524
- "3.8"
2625
- "3.9"
2726
- "3.10"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
- Drop support for Python 3.7 ([#578](https://github.com/Open-EO/openeo-python-client/issues/578))
15+
1416
### Removed
1517

1618
### Fixed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ examples and in-depth discussion.
4747

4848
## Installation
4949

50-
Python 3.7 or higher is required.
5150
As always, it is recommended to work in some kind of virtual environment
5251
(using `venv`, `virtualenv`, conda, docker, ...)
5352
to install the `openeo` package and its dependencies:

docs/installation.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ The package is a pure Python implementation and its dependencies are carefully c
1111
Basic install
1212
=============
1313

14-
At least *Python 3.7* is required (since version 0.23.0).
15-
Also, it is recommended to work in a some kind of *virtual environment* (``venv``, ``conda``, ...)
14+
It is recommended to work in a some kind of *virtual environment* (``venv``, ``conda``, ...)
1615
to avoid polluting the base install of Python on your operating system
1716
or introducing conflicts with other applications.
1817
How you organize your virtual environments heavily depends on your use case and workflow,

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
long_description=long_description,
6767
long_description_content_type="text/markdown",
6868
url="https://github.com/Open-EO/openeo-python-client",
69-
python_requires=">=3.7",
69+
python_requires=">=3.8",
7070
packages=find_packages(include=["openeo*"]),
7171
include_package_data=True,
7272
tests_require=tests_require,
@@ -96,7 +96,6 @@
9696
"console_scripts": ["openeo-auth=openeo.rest.auth.cli:main"],
9797
},
9898
classifiers=[
99-
"Programming Language :: Python :: 3.7",
10099
"Programming Language :: Python :: 3.8",
101100
"Programming Language :: Python :: 3.9",
102101
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)