version 1.0.9
This commit is contained in:
@@ -234,7 +234,6 @@ def isBDS44(msg, rev=True):
|
|||||||
|
|
||||||
else:
|
else:
|
||||||
# status bit 5, 15, 24, 36, 49
|
# status bit 5, 15, 24, 36, 49
|
||||||
|
|
||||||
result = result & checkbits(d, 5, 6, 14) \
|
result = result & checkbits(d, 5, 6, 14) \
|
||||||
& checkbits(d, 15, 16, 23) & checkbits(d, 24, 25, 35) \
|
& checkbits(d, 15, 16, 23) & checkbits(d, 24, 25, 35) \
|
||||||
& checkbits(d, 36, 37, 47) & checkbits(d, 49, 50, 56)
|
& checkbits(d, 36, 37, 47) & checkbits(d, 49, 50, 56)
|
||||||
|
|||||||
9
setup.py
9
setup.py
@@ -3,6 +3,13 @@
|
|||||||
See:
|
See:
|
||||||
https://packaging.python.org/en/latest/distributing.html
|
https://packaging.python.org/en/latest/distributing.html
|
||||||
https://github.com/pypa/sampleproject
|
https://github.com/pypa/sampleproject
|
||||||
|
|
||||||
|
Steps for deploying a new verison:
|
||||||
|
1. Increase the version number
|
||||||
|
2. remove the old deployment under [dist] folder
|
||||||
|
3. run: python setup.py sdist
|
||||||
|
run: python setup.py bdist_wheel --universal
|
||||||
|
4. twine upload dist/*
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# Always prefer setuptools over distutils
|
# Always prefer setuptools over distutils
|
||||||
@@ -23,7 +30,7 @@ setup(
|
|||||||
# Versions should comply with PEP440. For a discussion on single-sourcing
|
# Versions should comply with PEP440. For a discussion on single-sourcing
|
||||||
# the version across setup.py and the project code, see
|
# the version across setup.py and the project code, see
|
||||||
# https://packaging.python.org/en/latest/single_source_version.html
|
# https://packaging.python.org/en/latest/single_source_version.html
|
||||||
version='1.0.8',
|
version='1.0.9',
|
||||||
|
|
||||||
description='Python Mode-S Decoder',
|
description='Python Mode-S Decoder',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
|
|||||||
Reference in New Issue
Block a user