From 932273c6e7d94a8f5268393e39f9e2ba270a12f3 Mon Sep 17 00:00:00 2001 From: Kevin Griffin Date: Mon, 29 Jul 2024 10:14:09 -0400 Subject: [PATCH 1/2] updates hio for agent crash issue, updates keripy and other deps to match. Signed-off-by: Kevin Griffin --- .github/workflows/python-app-ci.yml | 8 ++++---- README.md | 2 +- docs/README.rst | 2 +- setup.py | 10 +++++----- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/python-app-ci.yml b/.github/workflows/python-app-ci.yml index 0a00cfc0..c4097aeb 100644 --- a/.github/workflows/python-app-ci.yml +++ b/.github/workflows/python-app-ci.yml @@ -21,10 +21,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.10.4 + - name: Set up Python 3.12.2 uses: actions/setup-python@v2 with: - python-version: 3.10.4 + python-version: 3.12.2 - name: Install dependencies run: | python -m pip install --upgrade pip @@ -44,10 +44,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Python 3.10.4 + - name: Set up Python 3.12.2 uses: actions/setup-python@v2 with: - python-version: 3.10.4 + python-version: 3.12.2 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/README.md b/README.md index f281ce28..8d119daa 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ All Agent db access is through the associated Agent. ### Setup -* Ensure [Python](https://www.python.org/downloads/) `version 3.10.4+` is installed +* Ensure [Python](https://www.python.org/downloads/) `version 3.12.2+` is installed * Install [Keripy dependency](https://github.com/WebOfTrust/keripy#dependencies) (`libsodium 1.0.18+`) diff --git a/docs/README.rst b/docs/README.rst index b4d24334..92cbb29f 100644 --- a/docs/README.rst +++ b/docs/README.rst @@ -14,7 +14,7 @@ Setup ~~~~~ - Ensure `Python `__ - ``version 3.10.4+`` is installed + ``version 3.12.2+`` is installed - Install `Keripy dependency `__ (``libsodium 1.0.18+``) diff --git a/setup.py b/setup.py index 62b62a11..c9dc09b7 100644 --- a/setup.py +++ b/setup.py @@ -73,16 +73,16 @@ "resolver", # eg: 'keyword1', 'keyword2', 'keyword3', ], - python_requires='>=3.10.4', + python_requires='>=3.12.2', install_requires=[ - 'hio>=0.6.9', - 'keri>=1.1.6', + 'hio>=0.6.14', + 'keri>=1.1.8', 'mnemonic>=0.20', 'multicommand>=1.0.0', - 'falcon>=3.1.0', + 'falcon>=3.1.3', 'http_sfv>=0.9.8', 'dataclasses_json>=0.5.7', - 'apispec>=6.3.0', + 'apispec>=6.6.0', ], extras_require={ # eg: From 557d19e1af2831e8f08adbbf14d20d944f16598e Mon Sep 17 00:00:00 2001 From: Kevin Griffin Date: Mon, 29 Jul 2024 10:18:29 -0400 Subject: [PATCH 2/2] fixes GitHUb CI action for macos Signed-off-by: Kevin Griffin --- .github/workflows/python-app-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app-ci.yml b/.github/workflows/python-app-ci.yml index c4097aeb..34b39b8c 100644 --- a/.github/workflows/python-app-ci.yml +++ b/.github/workflows/python-app-ci.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ macos-latest, ubuntu-latest ] + os: [ macos-13, ubuntu-latest ] steps: - uses: actions/checkout@v3