diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7d3659e85..49470917f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,7 +78,7 @@ jobs: persist-credentials: false - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 with: - python-version: "3.11" + python-version: "3.14" # Byte-compile sources — catches syntax errors without installing deps. - run: python -m compileall -q app.py core routes src services scripts tests @@ -138,9 +138,9 @@ jobs: - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 if: steps.docs-check.outputs.docs_only != 'true' with: - python-version: "3.11" + python-version: "3.14" cache: pip - - run: pip install -r requirements.txt + - run: pip install -r requirements.txt -r requirements-dev.txt if: steps.docs-check.outputs.docs_only != 'true' - run: mkdir -p data # sqlite DB lives at ./data/app.db if: steps.docs-check.outputs.docs_only != 'true' diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index efb38ed242..ed50c9a700 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,7 +36,7 @@ Manual development uses Python 3.11+: ```bash python3 -m venv venv source venv/bin/activate -pip install -r requirements.txt +pip install -r requirements.txt -r requirements-dev.txt # drop -dev to run the app without test tooling python -m uvicorn app:app --host 127.0.0.1 --port 7000 ``` diff --git a/README.md b/README.md index e5ee3fc575..44661d9016 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,10 @@ Deploy **Odysseus** on Render in one click. Get a self-hosted AI workspace — c https://github.com/user-attachments/assets/53277926-7b65-4687-8a0a-42878bd549a8 +
+
+