11[project ]
22name = " mypy-gitlab-code-quality"
3- version = " 1.1 .0"
3+ version = " 1.2 .0"
44description = " Simple script to generate gitlab code quality report from output of mypy."
55readme = " README.md"
6- requires-python = " >=3.8 "
6+ requires-python = " >=3.9 "
77license = { file = " LICENSE" }
88authors = [
99 { name = " Dmitry Samsonov" , email = " dmitriy.samsonov28@gmail.com" },
@@ -15,11 +15,11 @@ classifiers = [
1515 " License :: OSI Approved :: MIT License" ,
1616 " Operating System :: OS Independent" ,
1717 " Programming Language :: Python :: 3" ,
18- " Programming Language :: Python :: 3.8" ,
1918 " Programming Language :: Python :: 3.9" ,
2019 " Programming Language :: Python :: 3.10" ,
2120 " Programming Language :: Python :: 3.11" ,
2221 " Programming Language :: Python :: 3.12" ,
22+ " Programming Language :: Python :: 3.13" ,
2323]
2424[project .urls ]
2525"Homepage" = " https://github.com/soul-catcher/mypy-gitlab-code-quality"
@@ -33,7 +33,7 @@ build-backend = "setuptools.build_meta"
3333
3434[tool .mypy ]
3535strict = true
36- python_version = " 3.8 "
36+ python_version = " 3.9 "
3737exclude = [' test.*\.py' ]
3838
3939[tool .ruff .lint ]
@@ -45,6 +45,6 @@ ignore = [
4545 " FIX" , # Check for temporary developer notes
4646 " TD003" , # Temporary developer note missing link to issue
4747 " COM812" , # Comma checks. Conflicts with Ruff formatter
48- " ISC001" , # Implicit string concatenation. Conflicts with ruff formatter
48+ " ISC001" , # Implicit string concatenation. Conflicts with Ruff formatter
4949]
5050pydocstyle.convention = " pep257"
0 commit comments