Skip to content

Commit

Permalink
✨ add DidRotateApi to AcaPyClient (#207)
Browse files Browse the repository at this point in the history
* ✨ add DidRotateApi to AcaPyClient

* ⬆️ Version bump

* ⬆️ Upgrade anyio

* ⬆️ Upgrade pytest

* ⬆️ Upgrade black

* ⬆️ Upgrade ruff
  • Loading branch information
ff137 authored Oct 16, 2024
1 parent 8a6d0ac commit a634990
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
python -m pip install --upgrade pip
pip install \
isort~=5.13.2 \
black~=24.8.0
black~=24.10.0
- name: Check import style with isort
run: |
isort . --check --profile black --diff
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
python -m pip install --upgrade pip
pip install \
isort~=5.13.2 \
black~=24.8.0
black~=24.10.0
- name: Check import style with isort
run: |
isort . --check --profile black --diff
Expand Down
2 changes: 2 additions & 0 deletions aries_cloudcontroller/acapy_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
CredentialsApi,
DefaultApi,
DidExchangeApi,
DidRotateApi,
DiscoverFeaturesApi,
DiscoverFeaturesV20Api,
EndorseTransactionApi,
Expand Down Expand Up @@ -42,6 +43,7 @@ class AcaPyClient(AbstractAsyncContextManager):
credentials: CredentialsApi
default: DefaultApi
did_exchange: DidExchangeApi
did_rotate: DidRotateApi
discover_features: DiscoverFeaturesApi
discover_features_v2_0: DiscoverFeaturesV20Api
endorse_transaction: EndorseTransactionApi
Expand Down
8 changes: 4 additions & 4 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
anyio~=4.4.0
anyio~=4.6.0
autoflake~=2.3.1
black~=24.8.0
black~=24.10.0
isort~=5.13.2
pytest~=8.3.2
pytest~=8.3.3
pytest-mock~=3.14.0
ruff~=0.6.2
ruff~=0.6.9
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_requirements(filename: str):
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version="1.0.0b0",
version="1.0.0b1",
description="A simple python client for controlling an ACA-Py agent",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit a634990

Please sign in to comment.