Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.11]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
Expand All @@ -43,13 +43,12 @@ jobs:
--data '{"req":"note.add","file":"build_results.qi","body":{"result":"building"}}'
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U flake8 pytest coveralls ddtrace
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ iso8601==0.1.12
pyserial==3.4
python-periphery==2.3.0
PyYAML==6.0.1
flake8==3.8.3
flake8==6.1.0
pytest==7.0.1
pytest-cov==2.8.1
filelock==3.0.12
pydocstyle==5.0.2
packaging>=20.4
pre-commit
coveralls==3.3.1
ddtrace==2.21.1
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="note-python",
version="1.5.0",
version="1.5.1",
author="Blues Inc.",
author_email="support@blues.com",
description="Cross-platform Python Library for the Blues Wireless Notecard,",
Expand All @@ -16,16 +16,16 @@
license="MIT",
classifiers=[
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
],
install_requires=["filelock"],
python_requires='>=3.6',
python_requires='>=3.9',
)