-
Notifications
You must be signed in to change notification settings - Fork 446
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
Put it the right version of flet #1997
Conversation
Did you install Flet with |
I cloned the repo with git clone . |
OK, what output do you get by running |
On both branches(my branch and main branch) I got the same output "On the hand branch nothing to validate, the working copy is clean" |
I guess this line is the culprit:
|
Yeah |
But why "On the hand branch" in your case? Could you post a screenshot please? What version of git is that? |
I have not provided more necessary information? |
I fixed it here, differently: 091c915 |
I noticed that you add code only for windows I hope it going to work on Mac . Because the bug I occured and fixed is about Mac |
It's a fix for all platforms. You can give a try with preview version of Flet. |
* AlertDialog uses global state * DatePicker uses global state * State on the control level * Control-level state Fix flet-dev#2025, Fix flet-dev#1807, Fix flet-dev#1236, Fix flet-dev#1772 * Fix control tests * Bump fl_chart to 0.64.0 * Fix `scroll_to` with 0 animation duration Fix flet-dev#1659 * Fix page.width/.height on session start Fix flet-dev#1960 * Fix Flet version retrieval on non-English environments Fix flet-dev#1997
I followed the contribution guide correctly and I tried to run a small application by running the command poetry install then poetry run python hello.py I came across this error. we assume I have a file with this content
after this command poetry run python hello.py here is the error
I found the error is on this line of file flet/src/version.py
version = "0.2.0" and this version does not exist yet in https://github.com/flet-dev/flet/releases/
so I hard coded with one exist version if all the condition not respecte and everything work correctly