Skip to content

Commit

Permalink
Merge pull request #3 from cooperlees/cooperlees-new-version
Browse files Browse the repository at this point in the history
Move version to 22.2.1
  • Loading branch information
cooperlees authored Feb 2, 2022
2 parents 9d7864e + ea269bc commit 815d28b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"],
)

0 comments on commit 815d28b

Please sign in to comment.