pyfastnet 2.0.4__tar.gz → 2.0.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. {pyfastnet-2.0.4/pyfastnet.egg-info → pyfastnet-2.0.5}/PKG-INFO +1 -1
  2. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/fastnet_decoder/mappings.py +1 -1
  3. {pyfastnet-2.0.4 → pyfastnet-2.0.5/pyfastnet.egg-info}/PKG-INFO +1 -1
  4. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/setup.py +1 -1
  5. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/LICENSE +0 -0
  6. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/MANIFEST.in +0 -0
  7. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/README.md +0 -0
  8. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/fastnet_decoder/__init__.py +0 -0
  9. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/fastnet_decoder/decode_fastnet.py +0 -0
  10. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/fastnet_decoder/frame_buffer.py +0 -0
  11. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/fastnet_decoder/logger.py +0 -0
  12. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/fastnet_decoder/utils.py +0 -0
  13. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/pyfastnet.egg-info/SOURCES.txt +0 -0
  14. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/pyfastnet.egg-info/dependency_links.txt +0 -0
  15. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/pyfastnet.egg-info/top_level.txt +0 -0
  16. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/setup.cfg +0 -0
  17. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_apparent_frame.py +0 -0
  18. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_autopilot_frame.py +0 -0
  19. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_channels.py +0 -0
  20. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_depth_frame.py +0 -0
  21. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_format07_msb_regression.py +0 -0
  22. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_format08_layout.py +0 -0
  23. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_heel_frame.py +0 -0
  24. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_rudder_frame.py +0 -0
  25. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_tide_frame.py +0 -0
  26. {pyfastnet-2.0.4 → pyfastnet-2.0.5}/tests/test_true_frame.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyfastnet
3
- Version: 2.0.4
3
+ Version: 2.0.5
4
4
  Summary: A Python library for decoding FastNet protocol data streams.
5
5
  Home-page: https://github.com/ghotihook/pyfastnet
6
6
  Author: Alex Salmon
@@ -302,7 +302,7 @@ FORMAT_SIZE_MAP = {
302
302
  0x04: 4, # 32 bits (4 bytes)
303
303
  0x05: 4, # 32 bits (4 bytes)
304
304
  0x06: 4, # 32 bits (4 bytes)
305
- 0x07: 4, # 16 bits (2 bytes)
305
+ 0x07: 4, # 32 bits (4 bytes)
306
306
  0x08: 2, # 16 bits (2 bytes)
307
307
  0x0A: 4 # 32 bits (4 bytes)
308
308
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyfastnet
3
- Version: 2.0.4
3
+ Version: 2.0.5
4
4
  Summary: A Python library for decoding FastNet protocol data streams.
5
5
  Home-page: https://github.com/ghotihook/pyfastnet
6
6
  Author: Alex Salmon
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="pyfastnet",
5
- version="2.0.4", # Ensure this matches your intended version
5
+ version="2.0.5", # Ensure this matches your intended version
6
6
  author="Alex Salmon",
7
7
  author_email="alex@ivila.net",
8
8
  description="A Python library for decoding FastNet protocol data streams.",
File without changes
File without changes
File without changes
File without changes