Ned Batchelder
Ned Batchelder
Jython has a 2.7.1b3, which I didn't know about because it isn't mentioned anywhere on the jython.org site. So I downloaded the file mentioned in [Frank's blog](http://fwierzbicki.blogspot.com/), and tried it:...
If the Django settings don't enable template debugging, the plugin will disable itself and raise an exception. But some test runners (at least pytest) don't display the exception, so it's...
Some libraries use blocks from templates that have no `{% extends %}` tag. Normally a template like that would be fully rendered, so the blank lines between the blocks would...
From a discussion in Discord with @RonnyPfannschmidt: ``` RonnyPfannschmidt: @nedbat does scriv have any way to get the next version from something like setuptools_scm ? nedbat: Nothing built-in, and I...
The GitHub `gh` tool has a command `gh repo set-default` that sets a default remote when there is more than one. We could use this to determine which remote to...
Originally, scriv only wrote to changelog files, so `output_file` seemed right. But the `github-release` command reads from the file. A better name would be `changelog` (or `changelog_file`) for the setting....
People have pointed out other related tools to include in the [Philosophy section of the docs](https://github.com/nedbat/scriv/blob/master/docs/philosophy.rst): - https://github.com/semantic-release/release-notes-generator - https://github.com/sympy/sympy-bot
This is now available: https://github.com/pypa/setuptools/issues/1951
For use in CI, to check if a pull request has followed the right procedure: did it add a new fragment, and does the fragment have content. Question: - Some...