@@ -44,7 +44,7 @@ def make_release_tree(self, base_dir: str, files: Sequence) -> None:
44
44
def _stamp_version (filename : str ) -> None :
45
45
found , out = False , []
46
46
try :
47
- with open (filename , "r" ) as f :
47
+ with open (filename ) as f :
48
48
for line in f :
49
49
if "__version__ =" in line :
50
50
line = line .replace ("\" git\" " , "'%s'" % VERSION )
@@ -82,7 +82,7 @@ def build_py_modules(basedir: str, excludes: Sequence = ()) -> Sequence:
82
82
name = "GitPython" ,
83
83
cmdclass = {"build_py" : build_py , "sdist" : sdist },
84
84
version = VERSION ,
85
- description = """ GitPython is a python library used to interact with Git repositories"" " ,
85
+ description = "GitPython is a Python library used to interact with Git repositories" ,
86
86
author = "Sebastian Thiel, Michael Trier" ,
87
87
author_email = "byronimo@gmail.com, mtrier@gmail.com" ,
88
88
license = "BSD" ,
@@ -95,7 +95,7 @@ def build_py_modules(basedir: str, excludes: Sequence = ()) -> Sequence:
95
95
install_requires = requirements ,
96
96
tests_require = requirements + test_requirements ,
97
97
zip_safe = False ,
98
- long_description = """GitPython is a python library used to interact with Git repositories""" ,
98
+ long_description = """GitPython is a Python library used to interact with Git repositories""" ,
99
99
long_description_content_type = "text/markdown" ,
100
100
classifiers = [
101
101
# Picked from
@@ -121,5 +121,6 @@ def build_py_modules(basedir: str, excludes: Sequence = ()) -> Sequence:
121
121
"Programming Language :: Python :: 3.8" ,
122
122
"Programming Language :: Python :: 3.9" ,
123
123
"Programming Language :: Python :: 3.10" ,
124
+ "Programming Language :: Python :: 3.11" ,
124
125
],
125
126
)
0 commit comments