diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a1c8da..abdf3f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,7 @@ jobs: - "3.7" - "3.8" - "3.9" + - "3.10" steps: - uses: actions/checkout@v2 - name: Install Python 3 @@ -58,6 +59,7 @@ jobs: - "3.7" - "3.8" - "3.9" + - "3.10" steps: - uses: actions/checkout@v2 - name: Install Python 3 diff --git a/setup.py b/setup.py index bf21004..6c28280 100644 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ setup( "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], packages=["meshtastic"], include_package_data=True,