Skip to content

Commit 80f1948

Browse files
authored
Merge pull request #95 from markhobson/master
Remove type stubs as source has type hints
2 parents 122c551 + f78189c commit 80f1948

File tree

2 files changed

+1
-78
lines changed

2 files changed

+1
-78
lines changed

makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SHELL := bash
44
MAKEFLAGS += --no-builtin-rules \
55
--warn-undefined-variables
66

7-
.PHONY: dist pytest test typeshed
7+
.PHONY: dist pytest test
88

99
dist:
1010
if ! python3 -m pip freeze | grep -q build; then python3 -m pip install --upgrade build; fi
@@ -14,11 +14,6 @@ install_dev:
1414
python3 -m pip install --upgrade pip
1515
python3 -m pip install --upgrade --editable=./
1616

17-
typeshed:
18-
if ! command -v stubgen &>/dev/null; then python3 -m pip install --upgrade mypy; fi
19-
stubgen --output=src/inject --search-path=src src/inject
20-
mv -f src/inject/inject.pyi src/inject/__init__.pyi
21-
2217
upload:
2318
if ! python3 -m pip freeze | grep -q twine; then python3 -m pip install --upgrade twine; fi
2419
python3 -m twine upload dist/*

src/inject/__init__.pyi

Lines changed: 0 additions & 72 deletions
This file was deleted.

0 commit comments

Comments
 (0)