Skip to content

Commit 24d1734

Browse files
committed
More general wheel package tags for Linux
1 parent 4de9377 commit 24d1734

File tree

2 files changed

+6
-22
lines changed

2 files changed

+6
-22
lines changed

sdk/python/build-wheels.py

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -38,29 +38,20 @@
3838
"Linux amd64": {
3939
"fletd_asset": "linux_amd64",
4040
"fletd_exec": "fletd",
41-
"wheel_tags": [
42-
"py3-none-manylinux_2_17_x86_64",
43-
"py3-none-manylinux2014_x86_64",
44-
],
45-
"file_suffix": "py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64",
41+
"wheel_tags": ["py3-none-linux_x86_64"],
42+
"file_suffix": "py3-none-linux_x86_64",
4643
},
4744
"Linux arm64": {
4845
"fletd_asset": "linux_arm64",
4946
"fletd_exec": "fletd",
50-
"wheel_tags": [
51-
"py3-none-manylinux_2_17_aarch64",
52-
"py3-none-manylinux2014_aarch64",
53-
],
54-
"file_suffix": "py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64",
47+
"wheel_tags": ["py3-none-linux_aarch64"],
48+
"file_suffix": "py3-none-linux_aarch64",
5549
},
5650
"Linux arm": {
5751
"fletd_asset": "linux_arm_7",
5852
"fletd_exec": "fletd",
59-
"wheel_tags": [
60-
"py3-none-manylinux_2_17_armv7l",
61-
"py3-none-manylinux2014_armv7l",
62-
],
63-
"file_suffix": "py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l",
53+
"wheel_tags": ["py3-none-linux_armv7l"],
54+
"file_suffix": "py3-none-linux_armv7l",
6455
},
6556
"macOS amd64": {
6657
"fletd_asset": "darwin_amd64",

sdk/python/playground/icons-browser.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
import logging
21
import os
3-
from datetime import datetime
4-
from time import sleep
5-
from turtle import onclick
62

73
import flet
84
from flet import (
@@ -11,18 +7,15 @@
117
GridView,
128
Icon,
139
IconButton,
14-
OutlinedButton,
1510
Page,
1611
Row,
1712
SnackBar,
1813
Text,
1914
TextButton,
2015
TextField,
2116
alignment,
22-
border_radius,
2317
colors,
2418
icons,
25-
padding,
2619
)
2720

2821
# logging.basicConfig(level=logging.DEBUG)

0 commit comments

Comments
 (0)