aprsd 3.4.0__tar.gz → 3.4.2__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.
- {aprsd-3.4.0 → aprsd-3.4.2}/.github/workflows/manual_build.yml +2 -1
- {aprsd-3.4.0 → aprsd-3.4.2}/.github/workflows/master-build.yml +3 -2
- {aprsd-3.4.0 → aprsd-3.4.2}/.github/workflows/python.yml +1 -1
- aprsd-3.4.2/ChangeLog.md +1187 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/Makefile +13 -9
- {aprsd-3.4.0 → aprsd-3.4.2}/PKG-INFO +314 -60
- {aprsd-3.4.0 → aprsd-3.4.2}/README.rst +14 -12
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/__init__.py +5 -2
- aprsd-3.4.2/aprsd/client/__init__.py +13 -0
- aprsd-3.4.2/aprsd/client/aprsis.py +132 -0
- aprsd-3.4.2/aprsd/client/base.py +105 -0
- {aprsd-3.4.0/aprsd/clients → aprsd-3.4.2/aprsd/client/drivers}/aprsis.py +5 -1
- aprsd-3.4.2/aprsd/client/factory.py +88 -0
- aprsd-3.4.2/aprsd/client/fake.py +48 -0
- aprsd-3.4.2/aprsd/client/kiss.py +103 -0
- aprsd-3.4.2/aprsd/client/stats.py +38 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/dev.py +3 -2
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/listen.py +6 -5
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/send_message.py +6 -9
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/server.py +16 -25
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/webchat.py +6 -13
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/conf/common.py +0 -1
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/conf/plugin_common.py +0 -9
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/log/log.py +20 -1
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/main.py +1 -1
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/packets/__init__.py +8 -0
- aprsd-3.4.2/aprsd/packets/collector.py +79 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/packets/log.py +25 -7
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/packets/packet_list.py +3 -9
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/packets/seen_list.py +1 -6
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/packets/tracker.py +1 -7
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/packets/watch_list.py +1 -4
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugin.py +1 -2
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/stats/__init__.py +2 -2
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/stats/app.py +3 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/stats/collector.py +6 -7
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/threads/keep_alive.py +15 -5
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/threads/log_monitor.py +2 -4
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/threads/rx.py +4 -3
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/threads/tx.py +3 -3
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/utils/__init__.py +55 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd.egg-info/PKG-INFO +314 -60
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd.egg-info/SOURCES.txt +20 -15
- aprsd-3.4.2/aprsd.egg-info/requires.txt +144 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docker/Dockerfile +23 -6
- {aprsd-3.4.0 → aprsd-3.4.2}/docker/build.sh +3 -3
- aprsd-3.4.2/docs/apidoc/aprsd.client.drivers.rst +37 -0
- aprsd-3.4.2/docs/apidoc/aprsd.client.rst +69 -0
- aprsd-3.4.2/docs/apidoc/aprsd.log.rst +21 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.packets.rst +16 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.plugins.rst +0 -8
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.rst +2 -18
- aprsd-3.4.2/docs/apidoc/aprsd.stats.rst +29 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.threads.rst +16 -0
- aprsd-3.4.2/docs/changelog.rst +1258 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/readme.rst +97 -74
- aprsd-3.4.2/pyproject.toml +175 -0
- aprsd-3.4.0/dev-requirements.in → aprsd-3.4.2/requirements-dev.in +13 -6
- aprsd-3.4.2/requirements-dev.txt +86 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/requirements.in +17 -25
- aprsd-3.4.2/requirements.txt +72 -0
- aprsd-3.4.2/setup.cfg +4 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/setup.py +1 -11
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/plugins/test_notify.py +10 -10
- {aprsd-3.4.0 → aprsd-3.4.2}/tox.ini +6 -6
- aprsd-3.4.0/ChangeLog +0 -1060
- aprsd-3.4.0/aprsd/client.py +0 -461
- aprsd-3.4.0/aprsd/messaging.py +0 -4
- aprsd-3.4.0/aprsd/packets/collector.py +0 -56
- aprsd-3.4.0/aprsd.egg-info/not-zip-safe +0 -1
- aprsd-3.4.0/aprsd.egg-info/pbr.json +0 -1
- aprsd-3.4.0/aprsd.egg-info/requires.txt +0 -73
- aprsd-3.4.0/dev-requirements.txt +0 -83
- aprsd-3.4.0/docker/Dockerfile-dev +0 -60
- aprsd-3.4.0/docs/apidoc/aprsd.clients.rst +0 -29
- aprsd-3.4.0/docs/apidoc/aprsd.rpc.rst +0 -29
- aprsd-3.4.0/docs/changelog.rst +0 -662
- aprsd-3.4.0/pyproject.toml +0 -16
- aprsd-3.4.0/requirements.txt +0 -82
- aprsd-3.4.0/setup.cfg +0 -56
- {aprsd-3.4.0 → aprsd-3.4.2}/.coveragerc +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/.github/workflows/codeql.yml +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/.github/workflows/release_build.yml +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/.pre-commit-config.yaml +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/.readthedocs.yaml +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/AUTHORS +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/INSTALL.txt +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/LICENSE +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/MANIFEST.in +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cli_helper.py +0 -0
- {aprsd-3.4.0/aprsd/clients → aprsd-3.4.2/aprsd/client/drivers}/__init__.py +0 -0
- {aprsd-3.4.0/aprsd/clients → aprsd-3.4.2/aprsd/client/drivers}/fake.py +0 -0
- {aprsd-3.4.0/aprsd/clients → aprsd-3.4.2/aprsd/client/drivers}/kiss.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/completion.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/fetch_stats.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/healthcheck.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/cmds/list_plugins.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/conf/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/conf/client.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/conf/log.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/conf/opts.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/conf/plugin_email.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/exception.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/log/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/packets/core.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugin_utils.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/email.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/fortune.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/location.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/notify.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/ping.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/time.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/version.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/plugins/weather.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/threads/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/threads/aprsd.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/threads/registry.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/threads/stats.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/utils/counter.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/utils/fuzzyclock.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/utils/json.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/utils/objectstore.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/utils/ring_buffer.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/utils/trace.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/css/index.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/css/prism.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/css/tabs.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/images/Untitled.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-16-0.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-16-1.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-64-0.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-64-1.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/images/aprs-symbols-64-2.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/js/charts.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/js/echarts.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/js/logs.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/js/main.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/js/prism.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/js/send-message.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/static/js/tabs.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/admin/templates/index.html +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/chat.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/index.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/style.css.map +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/tabs.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/bootstrap.min.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/font.woff2 +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/google-fonts.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/jquery-ui.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/jquery.toast.css +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Bold.woff2 +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/LatoLatin-Regular.woff2 +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/icons.woff2 +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/css/upstream/themes/default/assets/fonts/outline-icons.woff2 +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/images/Untitled.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-16-0.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-16-1.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-64-0.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-64-1.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/images/aprs-symbols-64-2.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/images/globe.svg +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/gps.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/main.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/send-message.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/tabs.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/bootstrap.bundle.min.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/jquery-3.7.1.min.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/jquery-ui.min.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/jquery.toast.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/semantic.min.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/static/js/upstream/socket.io.min.js +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/web/chat/templates/index.html +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd/wsgi.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd-lnav.json +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd.egg-info/dependency_links.txt +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd.egg-info/entry_points.txt +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/aprsd.egg-info/top_level.txt +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docker/bin/admin.sh +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docker/bin/listen.sh +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docker/bin/run.sh +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docker/bin/setup.sh +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docker/docker-compose.yml +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/_static/.keep +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/_static/aprsd_overview.png +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/_static/aprsd_overview.svg +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/_templates/.keep +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.cmds.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.conf.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.utils.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.web.admin.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/aprsd.web.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/apidoc/modules.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/aprsd.drawio +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/clean_docs.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/conf.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/configure.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/index.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/install.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/links.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/plugin.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/docs/server.rst +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/examples/plugins/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/examples/plugins/example_plugin.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/gray.conf +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/cmds/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/cmds/test_send_message.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/cmds/test_webchat.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/fake.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/plugins/__init__.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/plugins/test_fortune.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/plugins/test_location.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/plugins/test_ping.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/plugins/test_time.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/plugins/test_version.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/plugins/test_weather.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/test_email.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/test_main.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/test_packets.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/tests/test_plugin.py +0 -0
- {aprsd-3.4.0 → aprsd-3.4.2}/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
|
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.
|
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
|
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
|