File tree 2 files changed +11
-2
lines changed 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ clean:
17
17
test : $(ACTIVATE )
18
18
$(VIRTUALENV_BIN ) /python -m unittest discover -v
19
19
20
- build-dist : clean $(ACTIVATE ) lint test
20
+ build-dist : clean $(ACTIVATE ) test
21
21
$(VIRTUALENV_BIN ) /python setup.py sdist bdist_wheel
22
22
23
23
publish-dist : build-dist
24
- $(VIRTUALENV_BIN ) /pip install twine==1.12.1 && \
24
+ $(VIRTUALENV_BIN ) /pip install twine==5.0.0 && \
25
25
$(VIRTUALENV_BIN ) /twine upload dist/*
26
26
27
27
$(VIRTUALENV ) $(ACTIVATE ) :
Original file line number Diff line number Diff line change 70
70
├── standard-command
71
71
└── tree - show the command tree of your CLI
72
72
```
73
+
74
+
75
+ Releasing:
76
+ 1 . update ` __version__ ` variable, and in ` setup.py `
77
+ 1 . git commit new version
78
+ 1 . git tag -a {version}
79
+ 1 . git push origin master --tags
80
+ 1 . make publish-dist
81
+ 1 . go to github UI and turn tag into a release
You can’t perform that action at this time.
0 commit comments