diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5da9648..3bb804e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,11 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.6, 3.9] + python-version: ["3.8", "3.9", "3.10"] os: [ubuntu-latest] steps: - uses: actions/checkout@v2 - - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2.2.2 with: diff --git a/setup.py b/setup.py index a999642..8575676 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def get_long_desc() -> str: setup( name="speedtest_wrapper", - version="21.11.19", + version="22.2.1", description="Wrap the speedtest cli and exports stats for prometheus", long_description=get_long_desc(), long_description_content_type="text/markdown", @@ -32,12 +32,11 @@ def get_long_desc() -> str: "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], - python_requires=">=3.6", + python_requires=">=3.8", entry_points={"console_scripts": ["speedtest-wrapper = speedtest_wrapper:main"]}, install_requires=["prometheus_client"], )