Bumping minimum python version?

Suggestions and discussion of future versions
Post Reply
Lord-Kamina
Member
Member
Posts: 20
Joined: Sun Dec 22, 2019 4:24 pm

Bumping minimum python version?

Post by Lord-Kamina »

I know the last deluge releason targets python 3.6, and 2.2 was intended to be 3.7 (which is now also EOL)
Is there anything blocking just bumping the minimum to 3.8 or even 3.9?
User avatar
ambipro
Moderator
Moderator
Posts: 570
Joined: Thu May 19, 2022 3:33 am
Contact:

Re: Bumping minimum python version?

Post by ambipro »

I'm on the develop branch running from source, and using 3.10 - so I do not think so.

Just be aware of the potential for plugins needing it removed from their filename and what packages are upgraded if you run into any errors.
Lord-Kamina
Member
Member
Posts: 20
Joined: Sun Dec 22, 2019 4:24 pm

Re: Bumping minimum python version?

Post by Lord-Kamina »

I'm working on a PR to move the plug-ins to wheels using importlib 😉
Cas
Top Bloke
Top Bloke
Posts: 3681
Joined: Mon Dec 07, 2009 6:04 am
Location: Scotland

Re: Bumping minimum python version?

Post by Cas »

Broad OS support for users means we target the oldest Python in use so just because it's eol doesn't mean we should jump version too quickly. However we should jump to minimum 3.8 considering 3.7 status.
Cas
Top Bloke
Top Bloke
Posts: 3681
Joined: Mon Dec 07, 2009 6:04 am
Location: Scotland

Re: Bumping minimum python version?

Post by Cas »

Using wheels is an interesting concept, I had major issues with trying to move plugins away from eggs so keen to see how you are tackling since they need to be unpacked and installed.

If we really need to, we can vendor a library in the package.
Lord-Kamina
Member
Member
Posts: 20
Joined: Sun Dec 22, 2019 4:24 pm

Re: Bumping minimum python version?

Post by Lord-Kamina »

Thing is, I managed to make them work without unpacking them. Vendoring libraries likely won't be needed since we can use importlib_resources and importib_metadata.

Most of the work is done, I'm currently in the process of ironing out some kinks and writing some tests
Post Reply