From 0e20f6b12a86bde40cfb7d30ea6c7da3a92589f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9l=C3=A8ne=20Martin?= Date: Fri, 29 Mar 2024 10:01:47 -0700 Subject: [PATCH 1/2] Upgrade deps for example --- docs/examples/app_user_provisioner/requirements.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/examples/app_user_provisioner/requirements.txt b/docs/examples/app_user_provisioner/requirements.txt index 575e804..04015f4 100644 --- a/docs/examples/app_user_provisioner/requirements.txt +++ b/docs/examples/app_user_provisioner/requirements.txt @@ -1,3 +1,3 @@ -pyodk==0.2.0 -segno==1.5.2 -Pillow==9.4.0 +pyodk==0.3.0 +segno==1.6.1 +Pillow==10.3.0 From 7b7e96d555552e4d443b5572915d9294969deae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9l=C3=A8ne=20Martin?= Date: Fri, 29 Mar 2024 10:03:07 -0700 Subject: [PATCH 2/2] Recommend pyenv, update venv command --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a2907e2..74ffb72 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This library aims to make common data analysis and workflow automation tasks as ## Install -The currently supported Python version for `pyodk` is 3.12. +The currently supported Python version for `pyodk` is 3.12. We recommend using [`pyenv`](https://github.com/pyenv/pyenv) to manage multiple versions of Python. ### From pip @@ -24,7 +24,7 @@ cd ~/repos/pyodk git clone https://github.com/getodk/pyodk.git repo # Create and activate a virtual environment for the install. -/usr/local/bin/python3.8 -m venv venv +python -m venv venv source venv/bin/activate # Install pyodk and its production dependencies.