pull/26/head v0.7.1
Konstantin Gründger 2017-06-05 10:07:04 +02:00
rodzic e7cc73b220
commit d0044deb47
5 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -1,6 +1,8 @@
# CHANGELOG
## Unreleased
## 0.7.1 - 2017-06-05
- parser: Bugfix, error_count in aircraft beacon is a int
## 0.7.0 - 2017-06-04

Wyświetl plik

@ -4,7 +4,7 @@ APRS_SERVER_PORT_CLIENT_DEFINED_FILTERS = 14580
APRS_APP_NAME = 'python-ogn-client'
PACKAGE_VERSION = '0.7.0'
PACKAGE_VERSION = '0.7.1'
APRS_APP_VER = PACKAGE_VERSION[:3]
APRS_KEEPALIVE_TIME = 240

Wyświetl plik

@ -37,8 +37,8 @@ setup(
extras_require={
'dev': [
'nose==1.3.7',
'coveralls==0.4.4',
'flake8==2.5.0'
'coveralls==1.1',
'flake8==3.3.0'
]
},
zip_safe=False

Wyświetl plik

@ -60,5 +60,6 @@ class TestStringMethods(unittest.TestCase):
self.assertIsNotNone(aircraft_beacon_triple)
self.assertIsNotNone(aircraft_beacon_single)
if __name__ == '__main__':
unittest.main()

Wyświetl plik

@ -28,5 +28,6 @@ class TestStringMethods(unittest.TestCase):
with self.assertRaises(AmbigousTimeError):
createTimestamp(test[0], reference_date=test[1], reference_time=test[2])
if __name__ == '__main__':
unittest.main()