Revert "PyroFork: Set minimal python version to 3.9"

This reverts commit bafef3d71e.

Signed-off-by: wulan17 <wulan17@nusantararom.org>
This commit is contained in:
wulan17 2023-05-23 20:48:56 +07:00
parent 6a17d55e66
commit e45001ca8c
No known key found for this signature in database
GPG key ID: 318CD6CD3A6AC0A5
2 changed files with 4 additions and 2 deletions

View file

@ -9,7 +9,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest] os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"] python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View file

@ -57,6 +57,8 @@ setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
@ -76,7 +78,7 @@ setup(
"Source": "https://github.com/Mayuri-Chan/pyrofork", "Source": "https://github.com/Mayuri-Chan/pyrofork",
"Documentation": "https://pyrofork.mayuri.my.id", "Documentation": "https://pyrofork.mayuri.my.id",
}, },
python_requires="~=3.9", python_requires="~=3.7",
package_data={ package_data={
"pyrogram": ["py.typed"], "pyrogram": ["py.typed"],
}, },