-
-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Netbox 2.11 planning to drop support for python36 #127
Comments
Are software collections typically installable out of the box on CentOS? Last I recall they weren't/involved extra administration work to setup installing from software collections, but my memory is hazy. If not, I'm not sure it would be appropriate to have this role take on the scope of doing so. It might just be best to write documentation/example playbook for deploying to CentOS using another role or something, and have this role test for/expect Python 3.8. |
That's very reasonable, we should just have a constraint check for python38 and have a message with some clue what to do when it's not found
—
Mark Tinberg ***@***.***>
Division of Information Technology-Network Services
University of Wisconsin-Madison
…________________________________________
From: Musee Ullah ***@***.***>
Sent: Wednesday, March 24, 2021 4:31 PM
To: lae/ansible-role-netbox
Cc: Mark Tinberg; Author
Subject: Re: [lae/ansible-role-netbox] Netbox 2.11 planning to drop support for python36 (#127)
Are software collections typically installable out of the box on CentOS? Last I recall they weren't/involved extra administration work to setup installing from software collections, but my memory is hazy.
If not, I'm not sure it would be appropriate to have this role take on the scope of doing so. It might just be best to write documentation/example playbook for deploying to CentOS using another role or something, and have this role test for/expect Python 3.8.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub<#127 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AAS7UM6AZT4W4PIHX2S6KUDTFJK2PANCNFSM4YTW4OTQ>.
|
Fixed in #141 |
netbox-community/netbox#5532
I checked on my CentOS 7 host and rh-python38 exists as a software collection so we should be able to change the package install portion to require that and use it to create the venv
scl enable rh-python38 "python -m venv py38venv"
which may fix some of the other issue with newer cryptography and rust.I haven't tested on Ubuntu 18.04 and this change is a few months out, hopeful in the interim we can rework the playbook to get the newer python runtime installed on all the platforms where it is readily available.
The text was updated successfully, but these errors were encountered: