Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade KERIA to require latest python... 3.12.1 #194

Merged
merged 1 commit into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/python-app-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.4
- name: Set up Python 3.12.1
uses: actions/setup-python@v2
with:
python-version: 3.10.4
python-version: 3.12.1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -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.1
uses: actions/setup-python@v2
with:
python-version: 3.10.4
python-version: 3.12.1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.14+` is installed
* Install [Keripy dependency](https://github.com/WebOfTrust/keripy#dependencies) (`libsodium 1.0.18+`)


Expand Down
2 changes: 1 addition & 1 deletion docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Setup
~~~~~

- Ensure `Python <https://www.python.org/downloads/>`__
``version 3.10.4+`` is installed
``version 3.12.1+`` is installed
- Install `Keripy
dependency <https://github.com/WebOfTrust/keripy#dependencies>`__
(``libsodium 1.0.18+``)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"resolver",
# eg: 'keyword1', 'keyword2', 'keyword3',
],
python_requires='>=3.10.4',
python_requires='>=3.12.1',
install_requires=[
'hio>=0.6.9',
'keri>=1.1.0',
Expand Down
Loading