We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75cb23b commit 8f159f4Copy full SHA for 8f159f4
Makefile
@@ -1,4 +1,4 @@
1
-.PHONY: test pep8 clean install build publish tree reenv
+.PHONY: test pep8 clean install build publish tree env
2
3
test: pep8
4
py.test --cov=flask_googlemaps -l --tb=short --maxfail=1 tests/
@@ -15,18 +15,16 @@ clean:
15
@rm -rf *.egg-info
16
17
install:
18
- @pip install flit pypandoc pygments
19
- @flit install -s
+ @poetry install
20
21
build:
22
- @flit build
+ @poetry build
23
24
publish:
25
- @flit publish
+ @poetry publish
26
27
tree:
28
@tree -L 1 -a -I __pycache__ --dirsfirst --noreport
29
30
-reenv:
31
- @rm -rf venv
32
- @python3.6 -m venv venv
+env:
+ @poetry env use 3.8
0 commit comments