bump required python version to 3.10 to match brew and apt

This commit is contained in:
Nick Sweeting 2024-02-18 19:14:08 -08:00
parent f554ae903e
commit 841c01ec2c

View file

@ -16,9 +16,10 @@ dependencies = [
"requests>=2.24.0", "requests>=2.24.0",
"w3lib>=1.22.0", "w3lib>=1.22.0",
"yt-dlp>=2023.10.13", "yt-dlp>=2023.10.13",
# dont add playwright becuase packages without sdists cause trouble on many build systems that refuse to install wheel-only packages
# "playwright>=1.39.0; platform_machine != 'armv7l'", # "playwright>=1.39.0; platform_machine != 'armv7l'",
] ]
requires-python = ">=3.9,<3.12" requires-python = ">=3.10,<3.13"
readme = "README.md" readme = "README.md"
license = {text = "MIT"} license = {text = "MIT"}
classifiers = [ classifiers = [
@ -91,7 +92,7 @@ sonic = [
"sonic-client>=0.0.5", "sonic-client>=0.0.5",
] ]
ldap = [ ldap = [
# apt install libldap2-dev libsasl2-dev # apt install libldap2-dev libsasl2-dev python3-ldap
"python-ldap>=3.4.3", "python-ldap>=3.4.3",
"django-auth-ldap>=4.1.0", "django-auth-ldap>=4.1.0",
] ]