eclipse / kiso-testing

https://kiso-testing.readthedocs.io/
Other
38 stars 43 forks source link

Python Version #446

Open Pog3k opened 8 months ago

Pog3k commented 8 months ago

We want to support higher Python Versions and drop support for Python <3.10

Has been discussed here: https://github.com/eclipse/kiso-testing/discussions/441

AlanPoAlSk commented 7 months ago

You need to modify the pyproject.toml file

change the version of the dependencies: [tool.poetry.dependencies] python = "^3.10"

and remove the following from the classifiers: "Programming Language :: Python", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9",

Let me know if it works

sebastianpfischer commented 7 months ago

Hi @AlanPoAlSk ,

welcome to our project :)

In addition to your points, the tox.ini needs to be updated so that the CI stops testing for under 3.9 and start testing for 3.10 and 3.11.

Do you feel like contributing? We would be happy :)