From d1d9b0c4cbfd70a668c0ec42ed65f0db6c25aca8 Mon Sep 17 00:00:00 2001 From: Greg Albrecht Date: Sat, 22 Jun 2024 16:56:10 -0700 Subject: [PATCH] making asyncinotify optional --- adsbcot/__init__.py | 2 +- setup.cfg | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/adsbcot/__init__.py b/adsbcot/__init__.py index 52330a8..821fd0e 100644 --- a/adsbcot/__init__.py +++ b/adsbcot/__init__.py @@ -18,7 +18,7 @@ """ADS-B to TAK Gateway.""" -__version__ = "8.0.0-beta2" +__version__ = "8.0.0-beta3" # COMPAT Python 3.6 test/build work-around: try: diff --git a/setup.cfg b/setup.cfg index 3f4e8d0..92f3735 100644 --- a/setup.cfg +++ b/setup.cfg @@ -79,12 +79,12 @@ install_requires = aircot >= 1.2.0 pytak >= 5.4.0 aiohttp < 4.0.0 - asyncinotify - + [options.extras_require] with_pymodes = pymodes >= 2.8 with_takproto = takproto >= 2.0.0 +with_asyncinotify = asyncinotify test = pytest-asyncio pytest-cov