Skip to content

Commit

Permalink
fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
xoolive committed Jan 19, 2023
1 parent 99dc2a4 commit 66c2984
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ jobs:

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

steps:
Expand Down
12 changes: 6 additions & 6 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ def build() -> None:

if sys.platform == "linux":
compile_args += [
"-march=native",
"-O3",
"-msse",
"-msse2",
"-mfma",
"-mfpmath=sse",
# "-march=native",
# "-O3",
# "-msse",
# "-msse2",
# "-mfma",
# "-mfpmath=sse",
"-Wno-pointer-sign",
"-Wno-unused-variable",
]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyModeS"
version = "2.14"
version = "2.15"
description = "Python Mode-S and ADS-B Decoder"
authors = ["Junzi Sun <j.sun-1@tudelft.nl>"]
license = "GNU GPL v3"
Expand Down

0 comments on commit 66c2984

Please sign in to comment.