Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66c29840b0 | ||
|
|
99dc2a4f40 | ||
|
|
39936e4472 |
4
.github/workflows/pypi-publish.yml
vendored
4
.github/workflows/pypi-publish.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
os: [windows-latest, ubuntu-latest, macos-latest]
|
||||
python-version: ["3.8", "3.9", "3.10", "3.11"]
|
||||
|
||||
steps:
|
||||
@@ -59,7 +59,7 @@ jobs:
|
||||
poetry run twine upload dist/*.whl
|
||||
|
||||
- name: Build and publish (source)
|
||||
if: ${{ startsWith(runner.os, 'ubuntu') && env.PYTHON_VERSION == '3.11' }}
|
||||
if: ${{ startsWith(runner.os, 'windows') && matrix.python-version == '3.11' }}
|
||||
env:
|
||||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
||||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
||||
|
||||
12
build.py
12
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",
|
||||
]
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user