File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,18 @@ check:
12
12
test-publish : build
13
13
twine upload --repository testpypi dist/*
14
14
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
17
20
18
21
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 .
20
23
21
24
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
23
27
24
28
uninstall :
25
29
pip uninstall slambuc
You can’t perform that action at this time.
0 commit comments