fixed makefile and readthedocs

This commit is contained in:
Bastian Venthur
2025-05-28 15:46:31 +02:00
parent ba4bf8481c
commit ce0f9f6fa7
2 changed files with 5 additions and 5 deletions

View File

@@ -3,13 +3,13 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.11"
python: "3.12"
mkdocs:
configuration: mkdocs.yml
python:
install:
- requirements: requirements.txt
- requirements: requirements-dev.txt
- path: .
extra_requirements:
- dev

View File

@@ -18,7 +18,7 @@ all: lint mypy test test-release
$(VENV): pyproject.toml
$(PY) -m venv $(VENV)
$(BIN)/pip install -e .['dev']
$(BIN)/pip install --upgrade -e .['dev']
touch $(VENV)
.PHONY: test