Skip to content
Snippets Groups Projects
Commit 62406e6b authored by Philipp S. Sommer's avatar Philipp S. Sommer
Browse files

Merge branch 'listen-options' into 'master'

implement listen options to dump requests or run arbitrary commands

Closes #54

See merge request !66
parents 623819ef b707f887
No related branches found
No related tags found
1 merge request!66implement listen options to dump requests or run arbitrary commands
Pipeline #414394 passed
Showing
with 5509 additions and 2145 deletions
......@@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: CC0-1.0
image: python:3.9
image: python:3.10
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
......@@ -46,6 +46,8 @@ test:
- SCENARIO: pydantic-2.4
- SCENARIO: pydantic-2.5
- SCENARIO: pydantic-2.6
- SCENARIO: pydantic-2.7
- SCENARIO: pydantic-2.8
artifacts:
name: pipfile
paths:
......
......@@ -8,6 +8,5 @@
"79"
],
"python.linting.mypyCategorySeverity.note": "Hint",
"python.linting.mypyEnabled": true,
"python.linting.mypyEnabled": true
}
......@@ -97,7 +97,7 @@ test-docs: ## generate Sphinx HTML documentation, including API docs
$(MAKE) -C docs linkcheck
servedocs: docs ## compile the docs watching for changes
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
watchmedo shell-command -p '*.rst' -p '*.py' -c '$(MAKE) -C docs html' -R -D .
release: dist ## package and upload a release
twine upload dist/*
......
......@@ -20,4 +20,4 @@ tox-current-env = {version = "*"}
allow_prereleases = true
[requires]
python_version = "3.9"
python_version = "3.10"
......@@ -21,4 +21,4 @@ pydantic = {version = "2.2.*"}
allow_prereleases = true
[requires]
python_version = "3.9"
python_version = "3.10"
This diff is collapsed.
......@@ -21,4 +21,4 @@ pydantic = {version = "2.3.*"}
allow_prereleases = true
[requires]
python_version = "3.9"
python_version = "3.10"
This diff is collapsed.
......@@ -21,4 +21,4 @@ pydantic = {version = "2.4.*"}
allow_prereleases = true
[requires]
python_version = "3.9"
python_version = "3.10"
This diff is collapsed.
......@@ -21,4 +21,4 @@ pydantic = {version = "2.5.*"}
allow_prereleases = true
[requires]
python_version = "3.9"
python_version = "3.10"
This diff is collapsed.
......@@ -21,4 +21,4 @@ pydantic = {version = "2.6.*"}
allow_prereleases = true
[requires]
python_version = "3.9"
python_version = "3.10"
This diff is collapsed.
# SPDX-FileCopyrightText: 2019-2024 Helmholtz Centre Potsdam GFZ German Research Centre for Geosciences
#
# SPDX-License-Identifier: CC0-1.0
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
deprogressapi = {ref = "master", git = "git+https://codebase.helmholtz.cloud/dasf/dasf-progress-api.git"}
dasf-broker-django = {ref = "main", git = "git+https://codebase.helmholtz.cloud/hcdc/django/dasf-broker-django.git", extras=["pytest"]}
demessaging = {extras = ["testsite"], file = "../../.."}
tox = {version = "*"}
tox-current-env = {version = "*"}
pydantic = {version = "2.7.*"}
[dev-packages]
[pipenv]
allow_prereleases = true
[requires]
python_version = "3.10"
This diff is collapsed.
SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum hereon GmbH
SPDX-License-Identifier: CC0-1.0
# SPDX-FileCopyrightText: 2019-2024 Helmholtz Centre Potsdam GFZ German Research Centre for Geosciences
#
# SPDX-License-Identifier: CC0-1.0
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
deprogressapi = {ref = "master", git = "git+https://codebase.helmholtz.cloud/dasf/dasf-progress-api.git"}
dasf-broker-django = {ref = "main", git = "git+https://codebase.helmholtz.cloud/hcdc/django/dasf-broker-django.git", extras=["pytest"]}
demessaging = {extras = ["testsite"], file = "../../.."}
tox = {version = "*"}
tox-current-env = {version = "*"}
pydantic = {version = "2.8.*"}
[dev-packages]
[pipenv]
allow_prereleases = true
[requires]
python_version = "3.10"
This diff is collapsed.
SPDX-FileCopyrightText: 2024 Helmholtz-Zentrum hereon GmbH
SPDX-License-Identifier: CC0-1.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment