@@ -44,7 +44,7 @@ def make_release_tree(self, base_dir: str, files: Sequence) -> None:
4444def _stamp_version (filename : str ) -> None :
4545 found , out = False , []
4646 try :
47- with open (filename , "r" ) as f :
47+ with open (filename ) as f :
4848 for line in f :
4949 if "__version__ =" in line :
5050 line = line .replace ("\" git\" " , "'%s'" % VERSION )
@@ -82,7 +82,7 @@ def build_py_modules(basedir: str, excludes: Sequence = ()) -> Sequence:
8282 name = "GitPython" ,
8383 cmdclass = {"build_py" : build_py , "sdist" : sdist },
8484 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" ,
8686 author = "Sebastian Thiel, Michael Trier" ,
8787 author_email = "byronimo@gmail.com, mtrier@gmail.com" ,
8888 license = "BSD" ,
@@ -95,7 +95,7 @@ def build_py_modules(basedir: str, excludes: Sequence = ()) -> Sequence:
9595 install_requires = requirements ,
9696 tests_require = requirements + test_requirements ,
9797 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""" ,
9999 long_description_content_type = "text/markdown" ,
100100 classifiers = [
101101 # Picked from
@@ -121,5 +121,6 @@ def build_py_modules(basedir: str, excludes: Sequence = ()) -> Sequence:
121121 "Programming Language :: Python :: 3.8" ,
122122 "Programming Language :: Python :: 3.9" ,
123123 "Programming Language :: Python :: 3.10" ,
124+ "Programming Language :: Python :: 3.11" ,
124125 ],
125126)
0 commit comments