aprsd 3.3.4__tar.gz → 3.4.1__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 (249) hide show
  1. {aprsd-3.3.4 → aprsd-3.4.1}/.github/workflows/manual_build.yml +2 -1
  2. {aprsd-3.3.4 → aprsd-3.4.1}/.github/workflows/master-build.yml +3 -2
  3. {aprsd-3.3.4 → aprsd-3.4.1}/.github/workflows/python.yml +1 -1
  4. aprsd-3.4.1/ChangeLog.md +1171 -0
  5. {aprsd-3.3.4 → aprsd-3.4.1}/Makefile +13 -9
  6. {aprsd-3.3.4 → aprsd-3.4.1}/PKG-INFO +317 -59
  7. {aprsd-3.3.4 → aprsd-3.4.1}/README.rst +14 -12
  8. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/__init__.py +5 -2
  9. aprsd-3.4.1/aprsd/client/__init__.py +13 -0
  10. aprsd-3.4.1/aprsd/client/aprsis.py +132 -0
  11. aprsd-3.4.1/aprsd/client/base.py +105 -0
  12. {aprsd-3.3.4/aprsd/clients → aprsd-3.4.1/aprsd/client/drivers}/aprsis.py +6 -3
  13. {aprsd-3.3.4/aprsd/clients → aprsd-3.4.1/aprsd/client/drivers}/fake.py +1 -1
  14. {aprsd-3.3.4/aprsd/clients → aprsd-3.4.1/aprsd/client/drivers}/kiss.py +1 -1
  15. aprsd-3.4.1/aprsd/client/factory.py +88 -0
  16. aprsd-3.4.1/aprsd/client/fake.py +48 -0
  17. aprsd-3.4.1/aprsd/client/kiss.py +103 -0
  18. aprsd-3.4.1/aprsd/client/stats.py +38 -0
  19. aprsd-3.4.1/aprsd/cmds/completion.py +22 -0
  20. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cmds/dev.py +3 -2
  21. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cmds/fetch_stats.py +53 -57
  22. aprsd-3.4.1/aprsd/cmds/healthcheck.py +86 -0
  23. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cmds/list_plugins.py +2 -2
  24. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cmds/listen.py +36 -20
  25. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cmds/send_message.py +7 -7
  26. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cmds/server.py +30 -17
  27. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cmds/webchat.py +39 -34
  28. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/conf/common.py +46 -31
  29. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/log/log.py +48 -7
  30. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/main.py +4 -17
  31. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/packets/__init__.py +3 -2
  32. aprsd-3.4.1/aprsd/packets/collector.py +56 -0
  33. aprsd-3.4.1/aprsd/packets/core.py +823 -0
  34. aprsd-3.4.1/aprsd/packets/log.py +143 -0
  35. aprsd-3.4.1/aprsd/packets/packet_list.py +116 -0
  36. aprsd-3.4.1/aprsd/packets/seen_list.py +54 -0
  37. aprsd-3.4.1/aprsd/packets/tracker.py +109 -0
  38. aprsd-3.4.1/aprsd/packets/watch_list.py +122 -0
  39. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugin.py +42 -17
  40. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/email.py +35 -7
  41. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/time.py +3 -2
  42. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/version.py +4 -5
  43. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/weather.py +0 -1
  44. aprsd-3.4.1/aprsd/stats/__init__.py +20 -0
  45. aprsd-3.4.1/aprsd/stats/app.py +49 -0
  46. aprsd-3.4.1/aprsd/stats/collector.py +38 -0
  47. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/threads/__init__.py +3 -2
  48. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/threads/aprsd.py +67 -36
  49. aprsd-3.4.1/aprsd/threads/keep_alive.py +124 -0
  50. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/threads/log_monitor.py +44 -0
  51. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/threads/rx.py +46 -26
  52. aprsd-3.4.1/aprsd/threads/stats.py +44 -0
  53. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/threads/tx.py +38 -19
  54. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/utils/__init__.py +12 -0
  55. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/utils/counter.py +6 -3
  56. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/utils/json.py +20 -0
  57. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/utils/objectstore.py +22 -17
  58. aprsd-3.4.1/aprsd/web/admin/static/css/prism.css +4 -0
  59. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/js/charts.js +9 -7
  60. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/js/echarts.js +71 -9
  61. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/js/main.js +47 -6
  62. aprsd-3.4.1/aprsd/web/admin/static/js/prism.js +12 -0
  63. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/templates/index.html +18 -7
  64. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/gps.js +3 -1
  65. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/main.js +4 -3
  66. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/send-message.js +5 -2
  67. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/templates/index.html +1 -0
  68. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/wsgi.py +62 -127
  69. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd.egg-info/PKG-INFO +317 -59
  70. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd.egg-info/SOURCES.txt +27 -24
  71. aprsd-3.4.1/aprsd.egg-info/requires.txt +150 -0
  72. {aprsd-3.3.4 → aprsd-3.4.1}/docker/Dockerfile +24 -8
  73. aprsd-3.4.1/docker/bin/setup.sh +50 -0
  74. {aprsd-3.3.4 → aprsd-3.4.1}/docker/build.sh +4 -4
  75. aprsd-3.4.1/docs/apidoc/aprsd.client.drivers.rst +37 -0
  76. aprsd-3.4.1/docs/apidoc/aprsd.client.rst +69 -0
  77. aprsd-3.4.1/docs/apidoc/aprsd.log.rst +21 -0
  78. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.packets.rst +16 -0
  79. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.plugins.rst +0 -8
  80. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.rst +2 -18
  81. aprsd-3.4.1/docs/apidoc/aprsd.stats.rst +29 -0
  82. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.threads.rst +16 -0
  83. aprsd-3.4.1/docs/changelog.rst +1258 -0
  84. {aprsd-3.3.4 → aprsd-3.4.1}/docs/readme.rst +97 -74
  85. aprsd-3.4.1/pyproject.toml +175 -0
  86. aprsd-3.3.4/dev-requirements.in → aprsd-3.4.1/requirements-dev.in +13 -6
  87. aprsd-3.4.1/requirements-dev.txt +86 -0
  88. {aprsd-3.3.4 → aprsd-3.4.1}/requirements.in +19 -27
  89. aprsd-3.4.1/requirements.txt +81 -0
  90. aprsd-3.4.1/setup.cfg +4 -0
  91. {aprsd-3.3.4 → aprsd-3.4.1}/setup.py +1 -11
  92. {aprsd-3.3.4 → aprsd-3.4.1}/tests/cmds/test_webchat.py +2 -5
  93. {aprsd-3.3.4 → aprsd-3.4.1}/tests/fake.py +13 -2
  94. {aprsd-3.3.4 → aprsd-3.4.1}/tests/plugins/test_notify.py +10 -10
  95. {aprsd-3.3.4 → aprsd-3.4.1}/tests/plugins/test_version.py +5 -8
  96. {aprsd-3.3.4 → aprsd-3.4.1}/tests/plugins/test_weather.py +1 -1
  97. aprsd-3.4.1/tests/test_packets.py +285 -0
  98. {aprsd-3.3.4 → aprsd-3.4.1}/tests/test_plugin.py +2 -6
  99. {aprsd-3.3.4 → aprsd-3.4.1}/tox.ini +7 -7
  100. aprsd-3.3.4/ChangeLog +0 -963
  101. aprsd-3.3.4/aprsd/client.py +0 -348
  102. aprsd-3.3.4/aprsd/cmds/completion.py +0 -36
  103. aprsd-3.3.4/aprsd/cmds/healthcheck.py +0 -84
  104. aprsd-3.3.4/aprsd/packets/core.py +0 -688
  105. aprsd-3.3.4/aprsd/packets/packet_list.py +0 -99
  106. aprsd-3.3.4/aprsd/packets/seen_list.py +0 -43
  107. aprsd-3.3.4/aprsd/packets/tracker.py +0 -111
  108. aprsd-3.3.4/aprsd/packets/watch_list.py +0 -96
  109. aprsd-3.3.4/aprsd/plugins/query.py +0 -81
  110. aprsd-3.3.4/aprsd/rpc/__init__.py +0 -14
  111. aprsd-3.3.4/aprsd/rpc/client.py +0 -165
  112. aprsd-3.3.4/aprsd/rpc/server.py +0 -99
  113. aprsd-3.3.4/aprsd/stats.py +0 -266
  114. aprsd-3.3.4/aprsd/threads/keep_alive.py +0 -115
  115. aprsd-3.3.4/aprsd/web/admin/static/css/prism.css +0 -189
  116. aprsd-3.3.4/aprsd/web/admin/static/js/prism.js +0 -2247
  117. aprsd-3.3.4/aprsd/web/admin/static/json-viewer/jquery.json-viewer.css +0 -57
  118. aprsd-3.3.4/aprsd/web/admin/static/json-viewer/jquery.json-viewer.js +0 -158
  119. aprsd-3.3.4/aprsd/web/chat/static/json-viewer/jquery.json-viewer.css +0 -57
  120. aprsd-3.3.4/aprsd/web/chat/static/json-viewer/jquery.json-viewer.js +0 -158
  121. aprsd-3.3.4/aprsd.egg-info/not-zip-safe +0 -1
  122. aprsd-3.3.4/aprsd.egg-info/pbr.json +0 -1
  123. aprsd-3.3.4/aprsd.egg-info/requires.txt +0 -75
  124. aprsd-3.3.4/dev-requirements.txt +0 -84
  125. aprsd-3.3.4/docker/Dockerfile-dev +0 -58
  126. aprsd-3.3.4/docs/apidoc/aprsd.clients.rst +0 -29
  127. aprsd-3.3.4/docs/apidoc/aprsd.rpc.rst +0 -29
  128. aprsd-3.3.4/docs/changelog.rst +0 -662
  129. aprsd-3.3.4/pyproject.toml +0 -16
  130. aprsd-3.3.4/requirements.txt +0 -84
  131. aprsd-3.3.4/setup.cfg +0 -56
  132. aprsd-3.3.4/tests/plugins/test_query.py +0 -54
  133. aprsd-3.3.4/tests/test_packets.py +0 -102
  134. {aprsd-3.3.4 → aprsd-3.4.1}/.coveragerc +0 -0
  135. {aprsd-3.3.4 → aprsd-3.4.1}/.github/workflows/codeql.yml +0 -0
  136. {aprsd-3.3.4 → aprsd-3.4.1}/.github/workflows/release_build.yml +0 -0
  137. {aprsd-3.3.4 → aprsd-3.4.1}/.pre-commit-config.yaml +0 -0
  138. {aprsd-3.3.4 → aprsd-3.4.1}/.readthedocs.yaml +0 -0
  139. {aprsd-3.3.4 → aprsd-3.4.1}/AUTHORS +0 -0
  140. {aprsd-3.3.4 → aprsd-3.4.1}/INSTALL.txt +0 -0
  141. {aprsd-3.3.4 → aprsd-3.4.1}/LICENSE +0 -0
  142. {aprsd-3.3.4 → aprsd-3.4.1}/MANIFEST.in +0 -0
  143. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cli_helper.py +0 -0
  144. {aprsd-3.3.4/aprsd/clients → aprsd-3.4.1/aprsd/client/drivers}/__init__.py +0 -0
  145. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/cmds/__init__.py +0 -0
  146. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/conf/__init__.py +0 -0
  147. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/conf/client.py +0 -0
  148. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/conf/log.py +0 -0
  149. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/conf/opts.py +0 -0
  150. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/conf/plugin_common.py +0 -0
  151. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/conf/plugin_email.py +0 -0
  152. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/exception.py +0 -0
  153. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/log/__init__.py +0 -0
  154. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/messaging.py +0 -0
  155. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugin_utils.py +0 -0
  156. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/__init__.py +0 -0
  157. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/fortune.py +0 -0
  158. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/location.py +0 -0
  159. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/notify.py +0 -0
  160. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/plugins/ping.py +0 -0
  161. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/threads/registry.py +0 -0
  162. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/utils/fuzzyclock.py +0 -0
  163. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/utils/ring_buffer.py +0 -0
  164. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/utils/trace.py +0 -0
  165. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/__init__.py +0 -0
  166. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/__init__.py +0 -0
  167. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/css/index.css +0 -0
  168. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/css/tabs.css +0 -0
  169. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/images/Untitled.png +0 -0
  170. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
  171. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
  172. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
  173. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
  174. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
  175. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/js/logs.js +0 -0
  176. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/js/send-message.js +0 -0
  177. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/admin/static/js/tabs.js +0 -0
  178. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/chat.css +0 -0
  179. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/index.css +0 -0
  180. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/style.css.map +0 -0
  181. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/tabs.css +0 -0
  182. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/bootstrap.min.css +0 -0
  183. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
  184. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/google-fonts.css +0 -0
  185. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/jquery-ui.css +0 -0
  186. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/jquery.toast.css +0 -0
  187. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
  188. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
  189. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
  190. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
  191. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
  192. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
  193. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
  194. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
  195. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/images/Untitled.png +0 -0
  196. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
  197. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
  198. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
  199. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
  200. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
  201. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/images/globe.svg +0 -0
  202. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/tabs.js +0 -0
  203. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +0 -0
  204. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +0 -0
  205. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/upstream/jquery-ui.min.js +0 -0
  206. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/upstream/jquery.toast.js +0 -0
  207. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/upstream/semantic.min.js +0 -0
  208. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd/web/chat/static/js/upstream/socket.io.min.js +0 -0
  209. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd-lnav.json +0 -0
  210. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd.egg-info/dependency_links.txt +0 -0
  211. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd.egg-info/entry_points.txt +0 -0
  212. {aprsd-3.3.4 → aprsd-3.4.1}/aprsd.egg-info/top_level.txt +0 -0
  213. {aprsd-3.3.4 → aprsd-3.4.1}/docker/bin/admin.sh +0 -0
  214. {aprsd-3.3.4 → aprsd-3.4.1}/docker/bin/listen.sh +0 -0
  215. {aprsd-3.3.4 → aprsd-3.4.1}/docker/bin/run.sh +0 -0
  216. {aprsd-3.3.4 → aprsd-3.4.1}/docker/docker-compose.yml +0 -0
  217. {aprsd-3.3.4 → aprsd-3.4.1}/docs/_static/.keep +0 -0
  218. {aprsd-3.3.4 → aprsd-3.4.1}/docs/_static/aprsd_overview.png +0 -0
  219. {aprsd-3.3.4 → aprsd-3.4.1}/docs/_static/aprsd_overview.svg +0 -0
  220. {aprsd-3.3.4 → aprsd-3.4.1}/docs/_templates/.keep +0 -0
  221. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.cmds.rst +0 -0
  222. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.conf.rst +0 -0
  223. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.utils.rst +0 -0
  224. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.web.admin.rst +0 -0
  225. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/aprsd.web.rst +0 -0
  226. {aprsd-3.3.4 → aprsd-3.4.1}/docs/apidoc/modules.rst +0 -0
  227. {aprsd-3.3.4 → aprsd-3.4.1}/docs/aprsd.drawio +0 -0
  228. {aprsd-3.3.4 → aprsd-3.4.1}/docs/clean_docs.py +0 -0
  229. {aprsd-3.3.4 → aprsd-3.4.1}/docs/conf.py +0 -0
  230. {aprsd-3.3.4 → aprsd-3.4.1}/docs/configure.rst +0 -0
  231. {aprsd-3.3.4 → aprsd-3.4.1}/docs/index.rst +0 -0
  232. {aprsd-3.3.4 → aprsd-3.4.1}/docs/install.rst +0 -0
  233. {aprsd-3.3.4 → aprsd-3.4.1}/docs/links.rst +0 -0
  234. {aprsd-3.3.4 → aprsd-3.4.1}/docs/plugin.rst +0 -0
  235. {aprsd-3.3.4 → aprsd-3.4.1}/docs/server.rst +0 -0
  236. {aprsd-3.3.4 → aprsd-3.4.1}/examples/plugins/__init__.py +0 -0
  237. {aprsd-3.3.4 → aprsd-3.4.1}/examples/plugins/example_plugin.py +0 -0
  238. {aprsd-3.3.4 → aprsd-3.4.1}/gray.conf +0 -0
  239. {aprsd-3.3.4 → aprsd-3.4.1}/tests/__init__.py +0 -0
  240. {aprsd-3.3.4 → aprsd-3.4.1}/tests/cmds/__init__.py +0 -0
  241. {aprsd-3.3.4 → aprsd-3.4.1}/tests/cmds/test_send_message.py +0 -0
  242. {aprsd-3.3.4 → aprsd-3.4.1}/tests/plugins/__init__.py +0 -0
  243. {aprsd-3.3.4 → aprsd-3.4.1}/tests/plugins/test_fortune.py +0 -0
  244. {aprsd-3.3.4 → aprsd-3.4.1}/tests/plugins/test_location.py +0 -0
  245. {aprsd-3.3.4 → aprsd-3.4.1}/tests/plugins/test_ping.py +0 -0
  246. {aprsd-3.3.4 → aprsd-3.4.1}/tests/plugins/test_time.py +0 -0
  247. {aprsd-3.3.4 → aprsd-3.4.1}/tests/test_email.py +0 -0
  248. {aprsd-3.3.4 → aprsd-3.4.1}/tests/test_main.py +0 -0
  249. {aprsd-3.3.4 → aprsd-3.4.1}/tools/fast8.sh +0 -0
@@ -43,8 +43,9 @@ jobs:
43
43
  with:
44
44
  context: "{{defaultContext}}:docker"
45
45
  platforms: linux/amd64,linux/arm64
46
- file: ./Dockerfile-dev
46
+ file: ./Dockerfile
47
47
  build-args: |
48
+ INSTALL_TYPE=github
48
49
  BRANCH=${{ steps.extract_branch.outputs.branch }}
49
50
  BUILDX_QEMU_ENV=true
50
51
  push: true
@@ -17,7 +17,7 @@ jobs:
17
17
  runs-on: ubuntu-latest
18
18
  strategy:
19
19
  matrix:
20
- python-version: ["3.9", "3.10", "3.11"]
20
+ python-version: ["3.10", "3.11"]
21
21
  steps:
22
22
  - uses: actions/checkout@v2
23
23
  - name: Set up Python ${{ matrix.python-version }}
@@ -53,8 +53,9 @@ jobs:
53
53
  with:
54
54
  context: "{{defaultContext}}:docker"
55
55
  platforms: linux/amd64,linux/arm64
56
- file: ./Dockerfile-dev
56
+ file: ./Dockerfile
57
57
  build-args: |
58
+ INSTALL_TYPE=github
58
59
  BRANCH=${{ steps.branch-name.outputs.current_branch }}
59
60
  BUILDX_QEMU_ENV=true
60
61
  push: true
@@ -7,7 +7,7 @@ jobs:
7
7
  runs-on: ubuntu-latest
8
8
  strategy:
9
9
  matrix:
10
- python-version: ["3.9", "3.10", "3.11"]
10
+ python-version: ["3.10", "3.11"]
11
11
  steps:
12
12
  - uses: actions/checkout@v2
13
13
  - name: Set up Python ${{ matrix.python-version }}