|
1 | 1 | # kas - setup tool for bitbake based projects
|
2 | 2 | #
|
3 |
| -# Copyright (c) Siemens AG, 2017-2019 |
| 3 | +# Copyright (c) Siemens AG, 2017-2025 |
4 | 4 | #
|
5 | 5 | # Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 | 6 | # of this software and associated documentation files (the "Software"), to deal
|
|
29 | 29 | from kas import __version__
|
30 | 30 |
|
31 | 31 | __license__ = 'MIT'
|
32 |
| -__copyright__ = 'Copyright (c) Siemens AG, 2017-2019' |
| 32 | +__copyright__ = 'Copyright (c) Siemens AG, 2017-2025' |
33 | 33 |
|
34 | 34 | HERE = path.abspath(path.dirname(__file__))
|
35 | 35 | with open(path.join(HERE, 'README.rst')) as f:
|
|
66 | 66 | 'License :: OSI Approved :: MIT License',
|
67 | 67 |
|
68 | 68 | 'Programming Language :: Python :: 3',
|
69 |
| - 'Programming Language :: Python :: 3.6', |
70 |
| - 'Programming Language :: Python :: 3.7', |
71 |
| - 'Programming Language :: Python :: 3.8', |
72 | 69 | 'Programming Language :: Python :: 3.9',
|
73 | 70 | 'Programming Language :: Python :: 3.10',
|
74 | 71 | 'Programming Language :: Python :: 3.11',
|
|
92 | 89 | 'distro>=1.0.0,<2',
|
93 | 90 | 'jsonschema>=2.5.0,<5',
|
94 | 91 | 'kconfiglib>=14.1.0,<15',
|
95 |
| - 'GitPython>=3.1.0,<4', |
96 |
| - "cached-property>=1.0,<2; python_version<'3.8'" |
| 92 | + 'GitPython>=3.1.0,<4' |
97 | 93 | ],
|
98 | 94 |
|
99 |
| - # At least python 3.6 is needed by now: |
100 |
| - python_requires='>=3.6', |
| 95 | + # At least python 3.9 is needed by now: |
| 96 | + python_requires='>=3.9', |
101 | 97 | )
|
0 commit comments