Skip to content

Commit dcd2732

Browse files
committed
Wow pypi is updating itself in a very user unfriendly fashion. What a mess.
1 parent 2ca304e commit dcd2732

File tree

1 file changed

+2
-21
lines changed

1 file changed

+2
-21
lines changed

Makefile

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ all:
44
@echo 'Here are the targets:'
55
@echo ''
66
@echo 'To develop : "make develop"'
7-
@echo 'To test install : "make testinstall"'
87
@echo 'To install : "make install"'
9-
@echo 'To test publish : "make testpublish"'
108
@echo 'To publish : "make publish"'
119

1210
@echo 'To check clang : "make check_clang"'
@@ -17,11 +15,7 @@ all:
1715
@echo ''
1816
@echo 'e.g. on linux: PATH=/usr/lib/llvm-3.3/bin:... make check_dragonegg'
1917
@echo ''
20-
@echo 'To turn md 2 html : "make zippity"'
21-
@echo ''
22-
@echo 'then upload the zip file to https://pypi.python.org/pypi'
23-
@echo ''
24-
@echo 'To pylint : "make lint"'
18+
@echo 'To pylint : "make lint"'
2519
@echo ''
2620

2721

@@ -38,16 +32,8 @@ dist: clean
3832
# INCREASE the version number in wllvm/version.py,
3933
# otherwise the server will give you an error.
4034

41-
testpublish: dist
42-
python setup.py register -r https://testpypi.python.org/pypi
43-
python setup.py sdist upload -r https://testpypi.python.org/pypi
44-
45-
testinstall:
46-
pip install -i https://testpypi.python.org/pypi wllvm
47-
4835
publish: dist
49-
python setup.py register -r https://pypi.python.org/pypi
50-
python setup.py sdist upload -r https://pypi.python.org/pypi
36+
python setup.py sdist upload
5137

5238
install:
5339
pip install
@@ -58,11 +44,6 @@ check_clang:
5844
check_dragonegg:
5945
cd test; python -m unittest -v test_base_driver test_dragonegg_driver
6046

61-
zippity:
62-
rm -rf doczip*; mkdir doczip;
63-
cat README.md | pandoc -f markdown_github > doczip/index.html
64-
zip -r -j doczip.zip doczip
65-
6647
clean:
6748
rm -f wllvm/*.pyc wllvm/*~
6849

0 commit comments

Comments
 (0)