Skip to content

Commit 9568c1c

Browse files
committed
Extend Makefile
1 parent 931ced7 commit 9568c1c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

Makefile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ check:
1212
test-publish: build
1313
twine upload --repository testpypi dist/*
1414

15-
#publish: build
16-
# twine upload --repository pypi dist/*
15+
publish: build
16+
twine upload --repository pypi dist/*
17+
18+
install-req:
19+
python3.11 -m pip install -U -r requirements.txt
1720

1821
dev-install:
19-
python3.11 -m pip install --no-cache-dir -e .
22+
python3.11 -m pip install --no-cache-dir --ignore-requires-python --no-deps -e .
2023

2124
test-install: build
22-
python3.11 -m pip install --no-cache-dir --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ slambuc
25+
python3.11 -m pip install --no-cache-dir --index-url https://test.pypi.org/simple/ \
26+
--extra-index-url https://pypi.org/simple/ slambuc
2327

2428
uninstall:
2529
pip uninstall slambuc

0 commit comments

Comments
 (0)