Sebastian Weigand
Sebastian Weigand
As discussed in #24 I added workflow to make a release when a tag is pushed. Features: - Makes a release on github when a tag is pushed - Automatically...
## Base PullRequest default branch (https://github.com/s-weigand/flake8-nb/tree/main) ## Command results Details: add path ```Shell /home/runner/work/_actions/technote-space/create-pr-action/v2/node_modules/npm-check-updates/build/src/bin ``` pip install pre-commit ```Shell Collecting pre-commit Downloading pre_commit-2.20.0-py2.py3-none-any.whl (199 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 199.5/199.5 kB 12.0 MB/s...
First of all thanks for the nice tool, I have used it for 3 years and together with a CD system, releasing a new version of your package is a...
Here is the [promised workflow](https://github.com/pypa/gh-action-pypi-publish/issues/22#issuecomment-720134921), for major and minor tag releases, which works with PEP440 versions. **Creates major+minor tags on** - 'normal' tags (e.g. `v2.0.0`) - post tags (e.g. `v2.0.0.post0`)...
To make it easier for users to adapt to breaking changes in the action, having major version tags to rely on, instead of `master`, is a good thing for users...
Last month github released github actions as CI service and the test runners are [a lot more 'buffed'](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources) than the ones on travis or circleCI. Also you can run up...
While derping around in the source code I saw that you manually parse the version number in your `setup.py`: https://github.com/executablebooks/sphinx-copybutton/blob/0d53ead4a580b50c595b3f95a039516fbd4c6681/setup.py#L24-L29 So I wanted to recommend [bump2version](https://github.com/c4urself/bump2version) to you. For me...
## Description Since `black` is in your `.pre-commit-config.yaml`, having extra formatting tests is redundant + you would have to manage its version in two more places. As for running `pre-commit...
The notebook [07.01-ipyleaflet.ipynb](https://github.com/jupyter-widgets/tutorial/blob/master/notebooks/07.01-ipyleaflet.ipynb) uses `xarray`, which isn't part of the dependencies and thus `Advanced example 1: Velocity` can't be executed on binder. IMHO adding `netcdf4` to the normal dependencies and...
First of all thanks for the awesome tool ❤️ I'm wondering how to access the profiling data recorded when using `asv run` with the `-p` flag. I can't find profiling...