Added support for Python 3.13

Change-Id: I8c985476d1dab34bab28605e5839d21f53701ab7
This commit is contained in:
Axel Andersson 2024-10-21 08:13:18 +02:00
parent f04961b9bd
commit 721fd18baf
4 changed files with 6 additions and 5 deletions

@ -6,7 +6,7 @@
## Requirements
powertrain_build is supported on Python versions 3.6 through 3.10.
powertrain_build is supported on Python versions 3.6 through 3.13.
## Basic Usage

@ -12,7 +12,7 @@ __version__ = VersionInfo('powertrain-build').release_string()
LOGGER.info('Current powertrain-build version is %s', __version__)
__config_version__ = '0.2.1'
__required_python_lower__ = '3.6'
__required_python_upper__ = '3.10'
__required_python_upper__ = '3.13'
workspace = helper_functions.get_repo_root()

@ -9,5 +9,6 @@ ruamel.yaml == 0.18.6; python_version > "3.6"
voluptuous >= 0.14.0; python_version >= "3.7"
voluptuous >= 0.11.7,<0.14.0; python_version < "3.7"
scipy==1.5.4; python_version < "3.8"
scipy==1.9.1; python_version >= "3.8"
scipy==1.9.1; python_version == "3.8" or python_version == "3.9" or python_version == "3.10"
scipy==1.14.1; python_version >= "3.11"
importlib-resources==5.4.0; python_version < "3.9"

@ -16,14 +16,14 @@ classifier =
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.13
Topic :: Software Development :: Build Tools
Topic :: Software Development :: Code Generators
Topic :: Software Development :: Embedded Systems
[options]
include_package_data = True
requires_python = >=3.6, <3.11
requires_python = >=3.6, <3.14
[files]
packages =