File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
{{cookiecutter.github_project_name}} Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ of those flags here.
89
89
- Publish the package to PyPI:
90
90
``` bash
91
91
pip install twine
92
- twine upload dist/*
92
+ twine upload dist/< python package name > *
93
93
```
94
94
- Tag the release commit (` git tag <python package version identifier> ` )
95
95
- Update the version in ` _version.py ` , and put it back to dev (e.g. 0.1.0 -> 0.2.0.dev).
Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
node_modules /
3
3
tests /
4
- .jshintrc
4
+ .jshintrc
5
+ # Ignore any build output from python:
6
+ dist /* .tar.gz
7
+ dist /* .wheel
Original file line number Diff line number Diff line change @@ -70,4 +70,4 @@ script:
70
70
(exit $EXIT_STATUS)
71
71
fi
72
72
after_success :
73
- - codecov
73
+ - codecov
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ module.exports = [
67
67
filename : 'index.js' ,
68
68
path : path . resolve ( __dirname , 'dist' ) ,
69
69
libraryTarget : 'amd' ,
70
- library : "{{ cookiecutter.npm_package_name }}" ,
70
+ library : "{{ cookiecutter.npm_package_name }}" ,
71
71
publicPath : 'https://unpkg.com/{{ cookiecutter.npm_package_name }}@' + version + '/dist/'
72
72
} ,
73
73
devtool : 'source-map' ,
You can’t perform that action at this time.
0 commit comments