Skip to content
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

Python 391 support #2392

Closed
wants to merge 3 commits into from
Closed

Python 391 support #2392

wants to merge 3 commits into from

Conversation

kuzeyron
Copy link
Contributor

@kuzeyron kuzeyron commented Jan 1, 2021

With these changes Python 3.9.1 should be able to run on your devices.

In order to run 3.9.1 on your device:
requirements = python3==3.9.1,hostpython3==3.9.1,kivy==master,setuptools==51.1.1,cython==0.29.21

My example code to run:

import platform
from kivy.app import App
from kivy.uix.button import Button

class TestApp(App):

    def build(self):
        return Button(
            text=f'hello world - {platform.python_version()}')

if __name__ == '__main__':
    TestApp().run()

@obfusk
Copy link
Contributor

obfusk commented Jan 1, 2021

There was already a PR for that: #2337 :)

@kuzeyron
Copy link
Contributor Author

kuzeyron commented Jan 1, 2021

There was already a PR for that: #2337 :)

Obviously your PR is going to step on a few land mines. At least for those who is running 3.9.1 on their systems.

@obfusk
Copy link
Contributor

obfusk commented Jan 2, 2021

#2394 has been merged :)

@misl6
Copy link
Member

misl6 commented Nov 20, 2021

Superseded by #2394.

@misl6 misl6 closed this Nov 20, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants