@@ -8,7 +8,7 @@ dynamic = ["version"]
8
8
description = " The lightning-fast ASGI server."
9
9
readme = " README.md"
10
10
license = " BSD-3-Clause"
11
- requires-python = " >=3.8 "
11
+ requires-python = " >=3.9 "
12
12
authors = [
13
13
{
name =
" Tom Christie" ,
email =
" [email protected] " },
14
14
{
name =
" Marcelo Trylesinski" ,
email =
" [email protected] " },
@@ -20,7 +20,6 @@ classifiers = [
20
20
" License :: OSI Approved :: BSD License" ,
21
21
" Operating System :: OS Independent" ,
22
22
" Programming Language :: Python :: 3" ,
23
- " Programming Language :: Python :: 3.8" ,
24
23
" Programming Language :: Python :: 3.9" ,
25
24
" Programming Language :: Python :: 3.10" ,
26
25
" Programming Language :: Python :: 3.11" ,
@@ -38,7 +37,7 @@ dependencies = [
38
37
39
38
[project .optional-dependencies ]
40
39
standard = [
41
- " colorama>=0.4;sys_platform == 'win32'" ,
40
+ " colorama>=0.4; sys_platform == 'win32'" ,
42
41
" httptools>=0.6.3" ,
43
42
" python-dotenv>=0.13" ,
44
43
" PyYAML>=5.1" ,
@@ -127,8 +126,6 @@ py-win32 = "sys_platform == 'win32'"
127
126
py-not-win32 = " sys_platform != 'win32'"
128
127
py-linux = " sys_platform == 'linux'"
129
128
py-darwin = " sys_platform == 'darwin'"
130
- py-gte-38 = " sys_version_info >= (3, 8)"
131
- py-lt-38 = " sys_version_info < (3, 8)"
132
129
py-gte-39 = " sys_version_info >= (3, 9)"
133
130
py-lt-39 = " sys_version_info < (3, 9)"
134
131
py-gte-310 = " sys_version_info >= (3, 10)"
0 commit comments