Skip to content

Commit

Permalink
[sherlock-build] generated from 2ea8ac4
Browse files Browse the repository at this point in the history
  • Loading branch information
broadbot committed Oct 3, 2024
1 parent 2ea8ac4 commit 1a75a70
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 30 deletions.
2 changes: 1 addition & 1 deletion sherlock-python-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Note: this API will try to load and return associations in responses, so clients
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: development
- Package version: v1.6.0
- Package version: v1.6.1
- Generator version: 7.9.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Expand Down
21 changes: 11 additions & 10 deletions sherlock-python-client/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sherlock_python_client"
version = "v1.6.0"
version = "v1.6.1"
description = "Sherlock"
authors = ["DSP DevOps <[email protected]>"]
license = "BSD-3-Clause"
Expand All @@ -12,17 +12,18 @@ include = ["sherlock_python_client/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"

urllib3 = ">= 1.25.3"
python-dateutil = ">=2.8.2"
pydantic = ">=2"
typing-extensions = ">=4.7.1"
urllib3 = ">= 1.25.3 < 3.0.0"
python-dateutil = ">= 2.8.2"
pydantic = ">= 2"
typing-extensions = ">= 4.7.1"

[tool.poetry.dev-dependencies]
pytest = ">=7.2.1"
tox = ">=3.9.0"
flake8 = ">=4.0.0"
types-python-dateutil = ">=2.8.19.14"
mypy = ">=1.5"
pytest = ">= 7.2.1"
pytest-cov = ">= 2.8.1"
tox = ">= 3.9.0"
flake8 = ">= 4.0.0"
types-python-dateutil = ">= 2.8.19.14"
mypy = ">= 1.5"


[build-system]
Expand Down
3 changes: 1 addition & 2 deletions sherlock-python-client/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.25.3, < 3.0.0
python_dateutil >= 2.8.2
pydantic >= 2
typing-extensions >= 4.7.1
6 changes: 3 additions & 3 deletions sherlock-python-client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "sherlock-python-client"
VERSION = "v1.6.0"
PYTHON_REQUIRES = ">=3.7"
VERSION = "v1.6.1"
PYTHON_REQUIRES = ">= 3.8"
REQUIRES = [
"urllib3 >= 1.25.3, < 3.0.0",
"python-dateutil",
"python-dateutil >= 2.8.2",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
]
Expand Down
2 changes: 1 addition & 1 deletion sherlock-python-client/sherlock_python_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
""" # noqa: E501


__version__ = "v1.6.0"
__version__ = "v1.6.1"

# import apis into sdk package
from sherlock_python_client.api.app_versions_api import AppVersionsApi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/v1.6.0/python'
self.user_agent = 'OpenAPI-Generator/v1.6.1/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: development\n"\
"SDK Package Version: v1.6.0".\
"SDK Package Version: v1.6.1".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion sherlock-python-client/sherlock_python_client_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Note: this API will try to load and return associations in responses, so clients
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: development
- Package version: v1.6.0
- Package version: v1.6.1
- Generator version: 7.9.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Expand Down
11 changes: 6 additions & 5 deletions sherlock-python-client/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
pytest~=7.1.3
pytest-cov>=2.8.1
pytest-randomly>=3.12.0
mypy>=1.4.1
types-python-dateutil>=2.8.19
pytest >= 7.2.1
pytest-cov >= 2.8.1
tox >= 3.9.0
flake8 >= 4.0.0
types-python-dateutil >= 2.8.19.14
mypy >= 1.5
4 changes: 2 additions & 2 deletions sherlock-typescript-client/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## @sherlock-js-client/sherlock@v1.6.0
## @sherlock-js-client/sherlock@v1.6.1

This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:

Expand Down Expand Up @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
_published:_

```
npm install @sherlock-js-client/[email protected].0 --save
npm install @sherlock-js-client/[email protected].1 --save
```

_unPublished (not recommended):_
Expand Down
4 changes: 2 additions & 2 deletions sherlock-typescript-client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sherlock-typescript-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sherlock-js-client/sherlock",
"version": "v1.6.0",
"version": "v1.6.1",
"description": "OpenAPI client for @sherlock-js-client/sherlock",
"author": "OpenAPI-Generator",
"repository": {
Expand Down

0 comments on commit 1a75a70

Please sign in to comment.