Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Python 3.10 Setup
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
python-version: "3.13"
- name: Install requirements for docs
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Python Setup
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
python-version: "3.13"
- name: Install dependencies
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.12
3.13
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12-slim
FROM python:3.13-slim
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/

WORKDIR /app
Expand Down
58 changes: 30 additions & 28 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# This file was autogenerated by uv via the following command:
# uv pip compile docs/requirements.in -o docs/requirements.txt
babel==2.16.0
babel==2.17.0
# via mkdocs-material
certifi==2024.8.30
backrefs==6.1
# via mkdocs-material
certifi==2025.11.12
# via requests
charset-normalizer==3.4.0
charset-normalizer==3.4.4
# via requests
click==8.1.7
click==8.3.1
# via mkdocs
colorama==0.4.6
# via mkdocs-material
Expand All @@ -16,19 +18,19 @@ hjson==3.1.0
# via
# mkdocs-macros-plugin
# super-collections
idna==3.10
idna==3.11
# via requests
jinja2==3.1.6
# via
# mkdocs
# mkdocs-macros-plugin
# mkdocs-material
markdown==3.7
markdown==3.10
# via
# mkdocs
# mkdocs-material
# pymdown-extensions
markupsafe==3.0.2
markupsafe==3.0.3
# via
# jinja2
# mkdocs
Expand All @@ -38,18 +40,18 @@ mergedeep==1.3.4
# mkdocs-get-deps
mkdocs==1.6.1
# via
# -r requirements.in
# -r docs/requirements.in
# mkdocs-macros-plugin
# mkdocs-material
mkdocs-get-deps==0.2.0
# via mkdocs
mkdocs-macros-plugin==1.3.7
# via -r requirements.in
mkdocs-material==9.5.45
# via -r requirements.in
mkdocs-macros-plugin==1.5.0
# via -r docs/requirements.in
mkdocs-material==9.7.1
# via -r docs/requirements.in
mkdocs-material-extensions==1.3.1
# via mkdocs-material
packaging==24.2
packaging==25.0
# via
# mkdocs
# mkdocs-macros-plugin
Expand All @@ -59,40 +61,40 @@ pathspec==0.12.1
# via
# mkdocs
# mkdocs-macros-plugin
platformdirs==4.3.6
platformdirs==4.5.1
# via mkdocs-get-deps
pygments==2.18.0
pygments==2.19.2
# via
# -r requirements.in
# -r docs/requirements.in
# mkdocs-material
pymdown-extensions==10.12
pymdown-extensions==10.19.1
# via
# -r requirements.in
# -r docs/requirements.in
# mkdocs-material
python-dateutil==2.9.0.post0
# via
# ghp-import
# mkdocs-macros-plugin
pyyaml==6.0.2
pyyaml==6.0.3
# via
# mkdocs
# mkdocs-get-deps
# mkdocs-macros-plugin
# pymdown-extensions
# pyyaml-env-tag
pyyaml-env-tag==0.1
pyyaml-env-tag==1.1
# via mkdocs
regex==2024.11.6
# via mkdocs-material
requests==2.32.4
# via mkdocs-material
six==1.16.0
requests==2.32.5
# via
# mkdocs-macros-plugin
# mkdocs-material
six==1.17.0
# via python-dateutil
super-collections==0.5.3
super-collections==0.6.2
# via mkdocs-macros-plugin
termcolor==2.5.0
termcolor==3.3.0
# via mkdocs-macros-plugin
urllib3==2.6.0
urllib3==2.6.2
# via requests
watchdog==6.0.0
# via mkdocs
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "flagging"
version = "0.1.0"
description = "App for Charles River Watershed Assocaition's Flagging Program"
readme = "README.md"
requires-python = "~=3.12"
requires-python = "~=3.13"

[tool.ruff]
line-length = 100
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pytest-celery
pytest-cov
pytest-env
pytest-postgresql
schemathesis
schemathesis<4

# ==========================================================
# Misc. dev stuff
Expand Down
Loading