Skip to content

Commit 66c2984

Browse files
committed
fix build issues
1 parent 99dc2a4 commit 66c2984

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
# It's just easier to recompile from source for Ubuntu and MacOS
21-
# Yes, it is...
22-
os: [windows-latest] # ubuntu-latest, macos-latest
20+
os: [windows-latest, ubuntu-latest, macos-latest]
2321
python-version: ["3.8", "3.9", "3.10", "3.11"]
2422

2523
steps:

build.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ def build() -> None:
1212

1313
if sys.platform == "linux":
1414
compile_args += [
15-
"-march=native",
16-
"-O3",
17-
"-msse",
18-
"-msse2",
19-
"-mfma",
20-
"-mfpmath=sse",
15+
# "-march=native",
16+
# "-O3",
17+
# "-msse",
18+
# "-msse2",
19+
# "-mfma",
20+
# "-mfpmath=sse",
2121
"-Wno-pointer-sign",
2222
"-Wno-unused-variable",
2323
]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyModeS"
3-
version = "2.14"
3+
version = "2.15"
44
description = "Python Mode-S and ADS-B Decoder"
55
authors = ["Junzi Sun <[email protected]>"]
66
license = "GNU GPL v3"

0 commit comments

Comments
 (0)