Skip to content

Commit

Permalink
feat: update client cis
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham Kumar committed Oct 16, 2024
1 parent 999fb6d commit 85be007
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.8.0
7.9.0
2 changes: 1 addition & 1 deletion clients/dart/credential_issuance_client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 1.0.0
- Generator version: 7.8.0
- Generator version: 7.9.0
- Build package: org.openapitools.codegen.languages.DartClientCodegen
For more information, please visit [https://github.com/affinidi/affinidi-tdk](https://github.com/affinidi/affinidi-tdk)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.8.0
7.9.0
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ def request(self, method, url, query_params=None, headers=None,
# Content-Type which generated by urllib3 will be
# overwritten.
del headers['Content-Type']
# Ensures that dict objects are serialized
post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a,b) for a, b in post_params]
r = self.pool_manager.request(
method, url,
fields=post_params,
Expand Down
2 changes: 1 addition & 1 deletion clients/python/credential_issuance_client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["OpenAPI", "OpenAPI-Generator", "CredentialIssuanceService"]
include = ["affinidi_tdk_credential_issuance_client/py.typed"]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"

urllib3 = ">= 1.25.3"
python-dateutil = ">=2.8.2"
Expand Down
2 changes: 1 addition & 1 deletion clients/python/credential_issuance_client/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.1.0
urllib3 >= 1.25.3, < 3.0.0
pydantic >= 1.10.5, < 2
aenum >= 3.1.11
2 changes: 1 addition & 1 deletion clients/python/credential_issuance_client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
VERSION = "1.0.0"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
"urllib3 >= 1.25.3, < 3.0.0",
"python-dateutil",
"pydantic >= 1.10.5, < 2",
"aenum"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.8.0
7.9.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.8.0
7.9.0
2 changes: 1 addition & 1 deletion package-lock.json

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

0 comments on commit 85be007

Please sign in to comment.