changed python version
Some checks failed
Deploy / lint (push) Successful in 14s
Deploy / test (push) Successful in 44s
Deploy / deploy (push) Failing after 12s

This commit is contained in:
2026-03-03 20:11:52 +01:00
parent db248b62a8
commit dd6b75d211
2 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: "3.12" python-version: "3.11"
- run: pip install ruff - run: pip install ruff
- run: ruff check app/ - run: ruff check app/
@@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: "3.12" python-version: "3.11"
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
node-version: "20" node-version: "20"

View File

@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "stock-data-backend" name = "stock-data-backend"
version = "0.1.0" version = "0.1.0"
description = "Investing-signal platform for NASDAQ stocks" description = "Investing-signal platform for NASDAQ stocks"
requires-python = ">=3.12" requires-python = ">=3.11"
dependencies = [ dependencies = [
"fastapi>=0.115.0", "fastapi>=0.115.0",
"uvicorn[standard]>=0.30.0", "uvicorn[standard]>=0.30.0",