From 152b46be8fb9d6d5cb513f55adf759f6f7605e63 Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Sat, 29 Apr 2023 11:36:53 -0400 Subject: [PATCH] chore: general tooling updates (#17) * chore: add __pycache__ to ignores * build: pip@23.1, pip-tools@6.13.0 * build: python@3.11.3 * build: general dependency updates * build: pip version range * docs: service list update --- .gitignore | 1 + .python-version | 2 +- README.md | 2 ++ requirements.txt | 4 ++-- script/bootstrap | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 2f14d8a..b7c8d14 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ deluge/config deluge/downloads **/healthcheck.json **/config.json +__pycache__ diff --git a/.python-version b/.python-version index b326afb..d2c96c0 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.9.15 +3.11.3 diff --git a/README.md b/README.md index 22fc9ec..000612e 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ |[Plex](./services/plex)|Plex media server| |[Deluge](./services/deluge)|Deluge Web service| |[Traefik](./services/traefik)|Traefik API Gateway| +|[Monolith](./services/monolith)|Usercode monolith| +|[Bitwarden](./services/bitwarden)|Bitwarden secrets management| ## Getting started diff --git a/requirements.txt b/requirements.txt index 6947247..d31b4dd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ # -# This file is autogenerated by pip-compile with python 3.9 -# To update, run: +# This file is autogenerated by pip-compile with Python 3.9 +# by the following command: # # pip-compile ./requirements.in # diff --git a/script/bootstrap b/script/bootstrap index f7fcbf6..6e67930 100644 --- a/script/bootstrap +++ b/script/bootstrap @@ -2,7 +2,7 @@ VENV="spadinaistan.venv" -python -m pip install pip==22.3 pip-tools==6.9.0 --no-cache +python -m pip install pip~=23.1 pip-tools==6.13.0 --no-cache if [ ! -d "./$VENV" ]; then python -m venv ./$VENV