kopia lustrzana https://github.com/glidernet/python-ogn-client
rodzic
e7cc73b220
commit
d0044deb47
|
@ -1,6 +1,8 @@
|
||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 0.7.1 - 2017-06-05
|
||||||
- parser: Bugfix, error_count in aircraft beacon is a int
|
- parser: Bugfix, error_count in aircraft beacon is a int
|
||||||
|
|
||||||
## 0.7.0 - 2017-06-04
|
## 0.7.0 - 2017-06-04
|
||||||
|
|
|
@ -4,7 +4,7 @@ APRS_SERVER_PORT_CLIENT_DEFINED_FILTERS = 14580
|
||||||
|
|
||||||
APRS_APP_NAME = 'python-ogn-client'
|
APRS_APP_NAME = 'python-ogn-client'
|
||||||
|
|
||||||
PACKAGE_VERSION = '0.7.0'
|
PACKAGE_VERSION = '0.7.1'
|
||||||
APRS_APP_VER = PACKAGE_VERSION[:3]
|
APRS_APP_VER = PACKAGE_VERSION[:3]
|
||||||
|
|
||||||
APRS_KEEPALIVE_TIME = 240
|
APRS_KEEPALIVE_TIME = 240
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -37,8 +37,8 @@ setup(
|
||||||
extras_require={
|
extras_require={
|
||||||
'dev': [
|
'dev': [
|
||||||
'nose==1.3.7',
|
'nose==1.3.7',
|
||||||
'coveralls==0.4.4',
|
'coveralls==1.1',
|
||||||
'flake8==2.5.0'
|
'flake8==3.3.0'
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
zip_safe=False
|
zip_safe=False
|
||||||
|
|
|
@ -60,5 +60,6 @@ class TestStringMethods(unittest.TestCase):
|
||||||
self.assertIsNotNone(aircraft_beacon_triple)
|
self.assertIsNotNone(aircraft_beacon_triple)
|
||||||
self.assertIsNotNone(aircraft_beacon_single)
|
self.assertIsNotNone(aircraft_beacon_single)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
|
@ -28,5 +28,6 @@ class TestStringMethods(unittest.TestCase):
|
||||||
with self.assertRaises(AmbigousTimeError):
|
with self.assertRaises(AmbigousTimeError):
|
||||||
createTimestamp(test[0], reference_date=test[1], reference_time=test[2])
|
createTimestamp(test[0], reference_date=test[1], reference_time=test[2])
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
Ładowanie…
Reference in New Issue