From bbdd2775c150cfed383cc942272883bfb438d1d4 Mon Sep 17 00:00:00 2001 From: Rob van der Linde Date: Mon, 4 Nov 2024 08:21:06 +1300 Subject: [PATCH] Test redis and wtforms updates and update readme --- README.md | 4 +++- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 249f1af..8c2d80a 100644 --- a/README.md +++ b/README.md @@ -13,10 +13,12 @@ At this point I just create a virtualenv and copy the compiled Samba files inside it, it's crude but works. python3 -m venv venv - cp -R samba/bin/python/* venv/site-packages/ + cp -R samba/bin/python/* venv/lib/python3.12/site-packages/ . venv/bin/activate pip install -e . +Make sure you change the python version in the path to match your system. + Configuring Sambal ------------------ diff --git a/pyproject.toml b/pyproject.toml index 6ed5132..3c5c67b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,9 +26,9 @@ dependencies = [ "pyramid==2.0.2", "pyramid_jinja2==2.10.1", "pyramid_session_redis==1.6.3", - "redis==5.1.1", + "redis==5.2.0", "waitress==3.0.1", - "WTForms==3.1.2", + "WTForms==3.2.1", ] [project.optional-dependencies]