File tree Expand file tree Collapse file tree 3 files changed +25
-1
lines changed
Expand file tree Collapse file tree 3 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -38,4 +38,15 @@ They need to be deployed manually:
3838
3939``` bash
4040mkdocs gh-deploy --force
41- ```
41+ ```
42+
43+ ## Release
44+
45+ Update ` setup.py ` .
46+
47+ ``` bash
48+ git tag < version>
49+ git push origin < version>
50+ ```
51+
52+ Then manually create a github release to trigger publishing to pypi.
Original file line number Diff line number Diff line change 1+
2+ setup :
3+ pip install -r tests/test_requirements.txt
4+ pip install -e .
5+
6+ test :
7+ pyflakes tests/ mkdocs_table_reader_plugin/
8+ pytest --cov=mkdocs_table_reader_plugin --cov-report term-missing tests
9+
10+ deploy_docs :
11+ mkdocs gh-deploy --force
Original file line number Diff line number Diff line change 44click
55xlrd>=1.0.0
66openpyxl
7+ # linting
8+ pyflakes
79# documentation
810mkdocs-material
911mkdocs-markdownextradata-plugin
You can’t perform that action at this time.
0 commit comments