~jugmac00/launchpadlib:apply-black

Last commit made on 2021-10-29
Get this branch:
git clone -b apply-black https://git.launchpad.net/~jugmac00/launchpadlib
Only Jürgen Gmach can upload to this branch. If you are Jürgen Gmach please log in for upload directions.

Branch merges

Branch information

Name:
apply-black
Repository:
lp:~jugmac00/launchpadlib

Recent commits

1d5d414... by Jürgen Gmach

Ignore the "black" commit for `git blame`

All developers need to apply the following config setting:

git config blame.ignoreRevsFile .git-blame-ignore-revs

230a233... by Jürgen Gmach

Apply black code formatter

As the commit id of this commit will change once it gets merged, there
needs to be a second commit introducing a .git-blame-ignore-revs
configuration file to ignore the black formatting commit for `git
blame`.

Also, the following command needs to be applied then by each developer:

git config blame.ignoreRevsFile .git-blame-ignore-revs

8d85999... by Jürgen Gmach

Use flake8 via pre-commit

f7fc211... by Colin Watson

Remove some obsolete scripts from contrib/

`editmoin` is a separate project that has nothing to do with
launchpadlib.

`close_bugs_from_commits` and `update-milestone-progress` assumed that
Launchpad's source is managed in bzr, which hasn't been true since 2019,
and are no longer useful enough to justify maintaining them.

b3df6db... by Colin Watson

Add basic pre-commit configuration

79fecd1... by Colin Watson

Release launchpadlib 1.10.15.1

07da694... by Colin Watson

Release launchpadlib 1.10.15

5ee6d99... by Jürgen Gmach

Avoid warning when building docs

`tox -e docs` resulted in the following warning:
"WARNING: html_static_path entry '_static' does not exist"

As `_static` is the default value for `html_static_path` there is no
need to configure it explicitly.

Also see readthedocs/readthedocs.org#1776

An alternative approach would have been to set the path to e.g.
`static`.

0120389... by Jürgen Gmach

Add support for newer Python versions

dd33d26... by Colin Watson

Build a universal wheel

launchpadlib supports both Python 2 and 3 and has no C extensions.