Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .generation/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Patched version of openapi-generator-cli with python3 support

FROM docker.io/openapitools/openapi-generator-cli:v7.12.0
FROM docker.io/openapitools/openapi-generator-cli:v7.17.0

RUN apt-get update && apt-get install -y python3
4 changes: 2 additions & 2 deletions .generation/config.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[input]
backendCommit = a67f76af99b5b579fa0823bfa5908fae0049cb22
backendCommit = 9c2decb9f961cdce3d26f278291344bc269b4cbe

[general]
githubUrl = https://github.com/geo-engine/openapi-client
version = 0.0.27
version = 0.0.28

[python]
name = geoengine_openapi_client
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8"] # use lowest supported Python version
python-version: ["3.10"] # use lowest supported Python version

defaults:
run:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

strategy:
matrix:
node-version: [16.20.x] # use lowest supported Node version
node-version: [20.19.x] # use lowest supported Node version

defaults:
run:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

defaults:
run:
Expand All @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.19.x, 20.11.x, 22.0.x ]
node-version: [20.19.x, 22.12.x, 24.0.x]

defaults:
run:
Expand Down
5 changes: 4 additions & 1 deletion python/.github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ name: geoengine_openapi_client Python package

on: [push, pull_request]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion python/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ docs/_build/
# PyBuilder
target/

#Ipython Notebook
# Ipython Notebook
.ipynb_checkpoints
6 changes: 3 additions & 3 deletions python/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ stages:
- pip install -r test-requirements.txt
- pytest --cov=geoengine_openapi_client

pytest-3.8:
extends: .pytest
image: python:3.8-alpine
pytest-3.9:
extends: .pytest
image: python:3.9-alpine
Expand All @@ -29,3 +26,6 @@ pytest-3.11:
pytest-3.12:
extends: .pytest
image: python:3.12-alpine
pytest-3.13:
extends: .pytest
image: python:3.13-alpine
9 changes: 3 additions & 6 deletions python/.openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ docs/ExternalDataId.md
docs/FeatureDataType.md
docs/FileNotFoundHandling.md
docs/FormatSpecifics.md
docs/FormatSpecificsOneOf.md
docs/FormatSpecificsOneOfCsv.md
docs/FormatSpecificsCsv.md
docs/GbifDataProviderDefinition.md
docs/GdalDatasetGeoTransform.md
docs/GdalDatasetParameters.md
Expand Down Expand Up @@ -334,8 +333,7 @@ geoengine_openapi_client/models/external_data_id.py
geoengine_openapi_client/models/feature_data_type.py
geoengine_openapi_client/models/file_not_found_handling.py
geoengine_openapi_client/models/format_specifics.py
geoengine_openapi_client/models/format_specifics_one_of.py
geoengine_openapi_client/models/format_specifics_one_of_csv.py
geoengine_openapi_client/models/format_specifics_csv.py
geoengine_openapi_client/models/gbif_data_provider_definition.py
geoengine_openapi_client/models/gdal_dataset_geo_transform.py
geoengine_openapi_client/models/gdal_dataset_parameters.py
Expand Down Expand Up @@ -587,8 +585,7 @@ test/test_external_data_id.py
test/test_feature_data_type.py
test/test_file_not_found_handling.py
test/test_format_specifics.py
test/test_format_specifics_one_of.py
test/test_format_specifics_one_of_csv.py
test/test_format_specifics_csv.py
test/test_gbif_data_provider_definition.py
test/test_gdal_dataset_geo_transform.py
test/test_gdal_dataset_parameters.py
Expand Down
2 changes: 1 addition & 1 deletion python/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.12.0
7.17.0
4 changes: 2 additions & 2 deletions python/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# ref: https://docs.travis-ci.com/user/languages/python
language: python
python:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
# uncomment the following if needed
#- "3.12-dev" # 3.12 development branch
#- "3.13-dev" # 3.13 development branch
#- "nightly" # nightly build
# command to install dependencies
install:
Expand Down
9 changes: 4 additions & 5 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ No description provided (generated by Openapi Generator https://github.com/opena
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.8.0
- Package version: 0.0.27
- Generator version: 7.12.0
- Package version: 0.0.28
- Generator version: 7.17.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.8+
Python 3.9+

## Installation & Usage
### pip install
Expand Down Expand Up @@ -243,8 +243,7 @@ Class | Method | HTTP request | Description
- [FeatureDataType](docs/FeatureDataType.md)
- [FileNotFoundHandling](docs/FileNotFoundHandling.md)
- [FormatSpecifics](docs/FormatSpecifics.md)
- [FormatSpecificsOneOf](docs/FormatSpecificsOneOf.md)
- [FormatSpecificsOneOfCsv](docs/FormatSpecificsOneOfCsv.md)
- [FormatSpecificsCsv](docs/FormatSpecificsCsv.md)
- [GbifDataProviderDefinition](docs/GbifDataProviderDefinition.md)
- [GdalDatasetGeoTransform](docs/GdalDatasetGeoTransform.md)
- [GdalDatasetParameters](docs/GdalDatasetParameters.md)
Expand Down
Loading