]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Declare support for Python 3.10 (#2562)
authorHugo van Kemenade <hugovk@users.noreply.github.com>
Sun, 14 Nov 2021 14:37:06 +0000 (16:37 +0200)
committerGitHub <noreply@github.com>
Sun, 14 Nov 2021 14:37:06 +0000 (06:37 -0800)
CHANGES.md
setup.py

index c8b9c8498156b8e5a3dd06d01a9d5abaa5d9f771..0d409d778af0338eb8f74ae7b0b2133f18cbd6be 100644 (file)
@@ -10,6 +10,7 @@
 - Add partial support for the match statement. As it's experimental, it's only enabled
   when `--target-version py310` is explicitly specified (#2586)
 - Add support for parenthesized with (#2586)
+- Declare support for Python 3.10 for running Black (#2562)
 
 ## 21.10b0
 
index a0c2006ef33792800ae09758f834516246710872..1914ba745e779a02b5622bd1882a0498aee468c7 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -104,6 +104,7 @@ setup(
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: 3.9",
+        "Programming Language :: Python :: 3.10",
         "Programming Language :: Python :: 3 :: Only",
         "Topic :: Software Development :: Libraries :: Python Modules",
         "Topic :: Software Development :: Quality Assurance",