|
1 | 1 | #!/usr/bin/env python
|
2 | 2 | #
|
3 |
| -# Copyright 2020-2024 Flavio Garcia |
| 3 | +# Copyright 2020-2025 Flavio Garcia |
4 | 4 | #
|
5 | 5 | # Licensed under the Apache License, Version 2.0 (the "License");
|
6 | 6 | # you may not use this file except in compliance with the License.
|
@@ -63,17 +63,17 @@ def resolve_requires(requirements_file):
|
63 | 63 | "Intended Audience :: Developers",
|
64 | 64 | "Intended Audience :: System Administrators",
|
65 | 65 | "Programming Language :: Python :: 3",
|
66 |
| - "Programming Language :: Python :: 3.8", |
67 | 66 | "Programming Language :: Python :: 3.9",
|
68 | 67 | "Programming Language :: Python :: 3.10",
|
69 | 68 | "Programming Language :: Python :: 3.11",
|
70 | 69 | "Programming Language :: Python :: 3.12",
|
| 70 | + "Programming Language :: Python :: 3.13", |
71 | 71 | "Programming Language :: Python :: 3 :: Only",
|
72 | 72 | "Topic :: Software Development :: Libraries :: Application Frameworks"
|
73 | 73 | ],
|
74 | 74 | packages=find_packages(),
|
75 | 75 | package_dir={'peasant': "peasant"},
|
76 |
| - python_requires=">= 3.8", |
| 76 | + python_requires=">= 3.9", |
77 | 77 | include_package_data=True,
|
78 | 78 | install_requires=resolve_requires("requirements/basic.txt")
|
79 | 79 | )
|
0 commit comments