Skip to content

Commit

Permalink
Issue #127 bump to python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Oct 20, 2023
1 parent 0c4dfbf commit 5e581a7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,30 @@ All notable changes to this project will be documented in this file.

The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Current: 0.11.x]

## [Current: 0.12.x]

### Added

### Changed

- Dockerfile: switch to `python:3.9-slim-bullseye` base image
- Parallelize `/jobs` requests to upstream back-ends ([#28](https://github.com/Open-EO/openeo-aggregator/issues/28))
- Increase timeout on getting batch job logs to 120s ([#128](https://github.com/Open-EO/openeo-aggregator/issues/128))
- Bump minimal required Python version to 3.10 ([#127](https://github.com/Open-EO/openeo-aggregator/issues/127))

### Fixed

### Removed



## [0.11.x]

### Changed

- Dockerfile: switch to `python:3.9-slim-bullseye` base image
- Parallelize `/jobs` requests to upstream back-ends ([#28](https://github.com/Open-EO/openeo-aggregator/issues/28))
- Increase timeout on getting batch job logs to 120s ([#128](https://github.com/Open-EO/openeo-aggregator/issues/128))


## [0.10.x]

### Added
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim-bullseye
FROM python:3.10-slim-bullseye


# Workaround for IPv4/IPv6 networking performance issues.
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pythonPipeline {
package_name = 'openeo-aggregator'
test_module_name = 'openeo_aggregator'
wipeout_workspace = true
python_version = ["3.8"]
python_version = ["3.10"]
extras_require = 'dev'
upload_dev_wheels = false
build_container_image = true
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

[tool.black]
line-length = 120
target-version = ["py310", "py311"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
data_files=[
("openeo-aggregator", ["CHANGELOG.md"]),
],
python_requires=">=3.8",
python_requires=">=3.10",
install_requires=[
"requests",
"attrs",
Expand Down
2 changes: 1 addition & 1 deletion src/openeo_aggregator/about.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
import sys

__version__ = "0.11.1a1"
__version__ = "0.12.0a1"


def log_version_info():
Expand Down

0 comments on commit 5e581a7

Please sign in to comment.