Compare commits
No commits in common. "factory" and "devel" have entirely different histories.
BIN
inflect-7.0.0.tar.gz
(Stored with Git LFS)
Normal file
BIN
inflect-7.0.0.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
3
inflect-7.3.1.tar.gz
Normal file
3
inflect-7.3.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:edd785148a673b0c6dfef1a7d80cc1bcb2dd6d041cdb313b60032e464fd4e808
|
||||
size 71980
|
16
typing_extensions-version.patch
Normal file
16
typing_extensions-version.patch
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
inflect/compat/py38.py | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
--- a/inflect/compat/py38.py
|
||||
+++ b/inflect/compat/py38.py
|
||||
@@ -1,7 +1,7 @@
|
||||
import sys
|
||||
|
||||
|
||||
-if sys.version_info >= (3, 9):
|
||||
+try:
|
||||
from typing import Annotated
|
||||
-else: # pragma: no cover
|
||||
+except ImportError:
|
||||
from typing_extensions import Annotated # noqa: F401
|
Loading…
Reference in New Issue
Block a user