1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00

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: build:
os: ubuntu-22.04 os: ubuntu-22.04
tools: tools:
python: "3.11" python: "3.12"
mkdocs: mkdocs:
configuration: mkdocs.yml configuration: mkdocs.yml
python: python:
install: install:
- requirements: requirements.txt - path: .
- requirements: requirements-dev.txt extra_requirements:
- path: . - dev

View File

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