11[tool .poetry ]
22name = " django-choices-field"
3- version = " 2.2.1 "
3+ version = " 2.2.2 "
44description = " Django field that set/get django's new TextChoices/IntegerChoices enum."
55authors = [
" Thiago Bellini Ribeiro <[email protected] >" ]
66license = " MIT"
@@ -17,6 +17,7 @@ classifiers = [
1717 " Operating System :: OS Independent" ,
1818 " Programming Language :: Python" ,
1919 " Programming Language :: Python :: 3" ,
20+ " Programming Language :: Python :: 3.7" ,
2021 " Programming Language :: Python :: 3.8" ,
2122 " Programming Language :: Python :: 3.9" ,
2223 " Programming Language :: Python :: 3.10" ,
@@ -30,7 +31,7 @@ classifiers = [
3031packages = [{ include = " django_choices_field" }]
3132
3233[tool .poetry .dependencies ]
33- python = " ^3.8 "
34+ python = " >=3.7 "
3435django = " >=3.2"
3536typing_extensions = " >=4.0.0"
3637
@@ -46,7 +47,7 @@ ruff = "^0.0.274"
4647
4748[tool .black ]
4849line-length = 100
49- target-version = [' py38 ' ]
50+ target-version = [' py37 ' ]
5051preview = true
5152exclude = '''
5253/(
@@ -121,7 +122,7 @@ ignore = [
121122 " SLF001" ,
122123 " TRY003" ,
123124]
124- target-version = " py38 "
125+ target-version = " py37 "
125126exclude = [
126127 " .eggs" ,
127128 " .git" ,
@@ -142,7 +143,7 @@ exclude = [
142143convention = " google"
143144
144145[tool .pyright ]
145- pythonVersion = " 3.8 "
146+ pythonVersion = " 3.7 "
146147useLibraryCodeForTypes = true
147148venvPath = " ."
148149venv = " .venv"
0 commit comments