|
23 | 23 |
|
24 | 24 | (major, minor) = (sys.version_info.major, sys.version_info.minor) |
25 | 25 | if major != 3 or minor < 7: |
26 | | - print('firebase_admin requires python >= 3.7', file=sys.stderr) |
| 26 | + print('firebase_admin requires python >= 3.9', file=sys.stderr) |
27 | 27 | sys.exit(1) |
28 | 28 |
|
29 | 29 | # Read in the package metadata per recommendations from: |
|
60 | 60 | keywords='firebase cloud development', |
61 | 61 | install_requires=install_requires, |
62 | 62 | packages=['firebase_admin'], |
63 | | - python_requires='>=3.7', |
| 63 | + python_requires='>=3.9', |
64 | 64 | classifiers=[ |
65 | 65 | 'Development Status :: 5 - Production/Stable', |
66 | 66 | 'Intended Audience :: Developers', |
67 | 67 | 'Topic :: Software Development :: Build Tools', |
68 | 68 | 'Programming Language :: Python :: 3', |
69 | | - 'Programming Language :: Python :: 3.7', |
70 | | - 'Programming Language :: Python :: 3.8', |
71 | 69 | 'Programming Language :: Python :: 3.9', |
72 | 70 | 'Programming Language :: Python :: 3.10', |
73 | 71 | 'Programming Language :: Python :: 3.11', |
74 | 72 | 'Programming Language :: Python :: 3.12', |
| 73 | + 'Programming Language :: Python :: 3.13', |
75 | 74 | 'License :: OSI Approved :: Apache Software License', |
76 | 75 | ], |
77 | 76 | ) |
0 commit comments