Skip to content

Commit 1349cba

Browse files
committed
Sure
1 parent 4eaaa99 commit 1349cba

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import typing
22
from datetime import datetime
33

4-
extensions: list[typing.Any] = []
4+
extensions: typing.List[typing.Any] = []
55
templates_path = ["_templates"]
66
source_suffix = ".rst"
77
master_doc = "index"

postgres_copy/__init__.py

-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
#!/usr/bin/env python
21
from .copy_from import CopyMapping
32
from .copy_to import CopyToQuery, SQLCopyToCompiler
43
from .managers import CopyManager, CopyQuerySet
54

6-
__version__ = "2.6.0"
7-
8-
95
__all__ = (
106
"CopyManager",
117
"CopyMapping",

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def local_version(version):
4242

4343

4444
class TestCommand(Command):
45-
user_options: list[typing.Any] = []
45+
user_options: typing.List[typing.Any] = []
4646

4747
def initialize_options(self):
4848
pass

0 commit comments

Comments
 (0)