Skip to content
Merged
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ __pycache__/*
.idea
.DS_Store
.env
.mypy_cache
.pytest_cache
.ruff_cache
.coverage
Expand Down
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ lint:
uv run eof-fixer .
uv run ruff format
uv run ruff check --fix
uv run mypy .
uv run ty check

lint-ci:
uv run eof-fixer . --check
uv run ruff format --check
uv run ruff check --no-fix
uv run mypy .
uv run ty check

test *args:
uv run --no-sync pytest {{ args }}
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"Modern-DI-FastAPI"
==
[![Test Coverage](https://codecov.io/gh/modern-python/modern-di-fastapi/branch/main/graph/badge.svg)](https://codecov.io/gh/modern-python/modern-di-fastapi)
[![MyPy Strict](https://img.shields.io/badge/mypy-strict-blue)](https://mypy.readthedocs.io/en/stable/getting_started.html#strict-mode-and-configuration)
[![Supported versions](https://img.shields.io/pypi/pyversions/modern-di-fastapi.svg)](https://pypi.python.org/pypi/modern-di-fastapi)
[![downloads](https://img.shields.io/pypi/dm/modern-di-fastapi.svg)](https://pypistats.org/packages/modern-di-fastapi)
[![GitHub stars](https://img.shields.io/github/stars/modern-python/modern-di-fastapi)](https://github.com/modern-python/modern-di-fastapi/stargazers)
Expand Down
6 changes: 1 addition & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dev = [
"httpx",
]
lint = [
"mypy",
"ty",
"ruff",
"eof-fixer",
"typing-extensions",
Expand All @@ -43,10 +43,6 @@ build-backend = "hatchling.build"
[tool.hatch.build]
include = ["modern_di_fastapi"]

[tool.mypy]
python_version = "3.10"
strict = true

[tool.ruff]
fix = false
unsafe-fixes = true
Expand Down
Loading