We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f087d47 commit a12e211Copy full SHA for a12e211
Makefile
@@ -6,25 +6,24 @@ doc:
6
test: install testENV testOAI testSRU testALTOtoTXT
7
8
testENV:
9
- python setup.py install
+ python3 setup.py install
10
11
testOAI:
12
- python2.7 ./test/oai_test.py
+ python3 ./test/oai_test.py
13
14
testSRU:
15
- python2.7 ./test/sru_test.py
+ python3 ./test/sru_test.py
16
17
testALTOtoTXT:
18
- python ./test/alto_to_text_test.py
+ python3 ./test/alto_to_text_test.py
19
20
clean:
21
rm -rf build
22
rm -rf dist
23
rm -rf kb.egg-info
24
find . -name \*.pyc -exec rm '{}' ';'
25
- find . -name "__pycache__" -exec rmdir {} \;
26
- rm -rf env/local/lib/python2.7/site-packages/kb-*
+ find . -name "__pycache__" -exec rmdir {} \;
27
rm README.html
28
29
install:
30
0 commit comments