Isilon / isilon_hadoop_tools

Tools for Using Hadoop with OneFS
https://pypi.org/project/isilon-hadoop-tools/
MIT License
14 stars 21 forks source link

Fix CI builds #107

Closed lfrancke closed 1 year ago

lfrancke commented 1 year ago

Github changed to Ubuntu 22.04 in October 22 as the default for "ubuntu-latest" https://github.blog/changelog/2022-11-09-github-actions-ubuntu-latest-workflows-will-use-ubuntu-22-04/. Unfortunately, there is no Python 3.5 or 3.6 for Ubuntu 22.04 for x86 as can be seen here https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json and this means that currently the CI builds are failing.

3.5 & 3.6 are also EOL and pipx requires 3.7 as well (now), that's why I decided to change the minimum system requirements to 3.7. Hope that's fine for you.

I'd like to get this in before my other PRs :)

lfrancke commented 1 year ago

Tox settings need to be updated as well, I'll get that done as well

lfrancke commented 1 year ago

I'm not a Python person and have never used tox before, I can't get this to build on my local machine so instead of adding new versions I decided to just remove 3.5 and 3.6 as they are EOL anyway

tucked commented 1 year ago

Thanks for the contribution! 👍 I've incorporated this into #109.

lfrancke commented 1 year ago

Thank you very much!