diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 609d0cf..704df0e 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -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: diff --git a/build.py b/build.py index 5608858..a391194 100644 --- a/build.py +++ b/build.py @@ -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", ] diff --git a/pyproject.toml b/pyproject.toml index 30af9e3..020236b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "GNU GPL v3"