]> 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:

Build with mypyc 1.3 (#3697)
authorStian Jensen <me@stianj.com>
Fri, 23 Jun 2023 04:22:28 +0000 (06:22 +0200)
committerGitHub <noreply@github.com>
Fri, 23 Jun 2023 04:22:28 +0000 (21:22 -0700)
Several new versions of mypyc has been released since the last upgrade, and they include some performance improvements which could make the compiled version of Black run faster.

https://mypy-lang.org/news.html

The latest version of hatch-mypyc allows being installed next the 1.x series of mypy.

CHANGES.md
pyproject.toml

index e1028c176814e37782e3a50bf69668ac5b34e36e..460f9c95114cbceaa9d2e58a9c8708f92d7caa32 100644 (file)
@@ -33,6 +33,8 @@
 
 <!-- Changes to how Black is packaged, such as dependency requirements -->
 
+- Upgrade mypyc from 0.991 to 1.3 (#3697)
+
 ### Parser
 
 <!-- Changes to the parser or to version autodetection -->
index 6803a627e9ab8e27a73f91d6cd6d21f9011aaf4a..d44623fdbd39c5fee0a92b99265aeea4bb2c1ac8 100644 (file)
@@ -119,8 +119,8 @@ sources = ["src"]
 [tool.hatch.build.targets.wheel.hooks.mypyc]
 enable-by-default = false
 dependencies = [
-  "hatch-mypyc>=0.13.0",
-  "mypy==0.991",
+  "hatch-mypyc>=0.16.0",
+  "mypy==1.3",
   # Required stubs to be removed when the packages support PEP 561 themselves
   "types-typed-ast>=1.4.2",
 ]