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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python.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"]
python-version: ["3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 1 addition & 7 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,9 @@ stages:
- pip install -r test-requirements.txt
- pytest --cov=actinia_openapi_python_client

pytest-3.9:
extends: .pytest
image: python:3.9-alpine
pytest-3.10:
extends: .pytest
image: python:3.10-alpine
pytest-3.11:
extends: .pytest
image: python:3.11-alpine
pytest-3.12:
extends: .pytest
image: python:3.11-alpine
image: python:3.12-alpine
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# ref: https://docs.travis-ci.com/user/languages/python
language: python
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
# uncomment the following if needed
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ The `test/` tree mirrors the generated code: one `test_*.py` per API class and p

## CI

GitHub Actions (`.github/workflows/python.yml`) runs flake8 + pytest on Python 3.9–3.12 for every push and PR. `.github/workflows/python-publish.yml` builds and publishes to PyPI on a published GitHub release (uses `PYPI_API_TOKEN`). A parallel GitLab CI config (`.gitlab-ci.yml`) runs the same pytest matrix. Supported Python is **3.9+**.
GitHub Actions (`.github/workflows/python.yml`) runs flake8 + pytest on Python 3.11–3.12 for every push and PR. `.github/workflows/python-publish.yml` builds and publishes to PyPI on a published GitHub release (uses `PYPI_API_TOKEN`). A parallel GitLab CI config (`.gitlab-ci.yml`) runs the same pytest matrix. Supported Python is **3.11+**.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ This Python package is automatically generated by the [OpenAPI Generator](https:

## Requirements

Python 3.9+
Python 3.11+

## Installation & Usage

Expand Down Expand Up @@ -409,4 +409,3 @@ Authentication schemes defined for the API:




2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ additionalProperties:
packageDescription: Actinia Core Python Client
packageUrl: ""
packageKeywords: ["actinia", "actinia-core", "python", "client", "grassgis", "gis", "grass", "openplains"]
packageInstallRequires: ["urllib3", "python-dateutil", "pydantic >= 2", "typing-extensions >= 4.7.1"]
packageInstallRequires: ["urllib3 >=2.7.0, <=2.7.0", "python-dateutil", "pydantic >= 2", "typing-extensions >= 4.7.1"]
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ keywords = ["OpenAPI", "OpenAPI-Generator", "Actinia", "GRASS GIS", "GRASS", "GI
include = ["actinia_openapi_python_client/py.typed"]

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.11"

urllib3 = ">= 1.25.3"
urllib3 = ">=2.7.0, <=2.7.0"
python-dateutil = ">=2.8.2"
pydantic = ">=2"
typing-extensions = ">=4.7.1"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.25.3, <= 2.2.2
urllib3 >=2.7.0, <=2.7.0
pydantic >= 2
typing-extensions >= 4.7.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
# http://pypi.python.org/pypi/setuptools
NAME = "actinia-openapi-python-client"
VERSION = "0.0.5"
PYTHON_REQUIRES = ">=3.9"
PYTHON_REQUIRES = ">=3.11"
REQUIRES = [
"urllib3 >= 1.25.3, <= 2.2.2",
"urllib3 >=2.7.0, <=2.7.0",
"python-dateutil",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
Expand Down