Skip to content

Commit

Permalink
More general wheel package tags for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
FeodorFitsner committed Apr 30, 2022
1 parent 4de9377 commit 24d1734
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 22 deletions.
21 changes: 6 additions & 15 deletions sdk/python/build-wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,29 +38,20 @@
"Linux amd64": {
"fletd_asset": "linux_amd64",
"fletd_exec": "fletd",
"wheel_tags": [
"py3-none-manylinux_2_17_x86_64",
"py3-none-manylinux2014_x86_64",
],
"file_suffix": "py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64",
"wheel_tags": ["py3-none-linux_x86_64"],
"file_suffix": "py3-none-linux_x86_64",
},
"Linux arm64": {
"fletd_asset": "linux_arm64",
"fletd_exec": "fletd",
"wheel_tags": [
"py3-none-manylinux_2_17_aarch64",
"py3-none-manylinux2014_aarch64",
],
"file_suffix": "py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64",
"wheel_tags": ["py3-none-linux_aarch64"],
"file_suffix": "py3-none-linux_aarch64",
},
"Linux arm": {
"fletd_asset": "linux_arm_7",
"fletd_exec": "fletd",
"wheel_tags": [
"py3-none-manylinux_2_17_armv7l",
"py3-none-manylinux2014_armv7l",
],
"file_suffix": "py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l",
"wheel_tags": ["py3-none-linux_armv7l"],
"file_suffix": "py3-none-linux_armv7l",
},
"macOS amd64": {
"fletd_asset": "darwin_amd64",
Expand Down
7 changes: 0 additions & 7 deletions sdk/python/playground/icons-browser.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
import logging
import os
from datetime import datetime
from time import sleep
from turtle import onclick

import flet
from flet import (
Expand All @@ -11,18 +7,15 @@
GridView,
Icon,
IconButton,
OutlinedButton,
Page,
Row,
SnackBar,
Text,
TextButton,
TextField,
alignment,
border_radius,
colors,
icons,
padding,
)

# logging.basicConfig(level=logging.DEBUG)
Expand Down

0 comments on commit 24d1734

Please sign in to comment.