Skip to content

Commit 4bf0fc7

Browse files
committed
Test on latest OS and Python versions in CI
1 parent 7b1d67d commit 4bf0fc7

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,13 @@ jobs:
1111
strategy:
1212
matrix:
1313
os:
14-
- ubuntu-22.04
15-
- ubuntu-20.04
14+
- ubuntu-24.04
1615
- macos-12
17-
- macos-11
1816
python-version:
19-
- "3.7"
20-
- "3.8"
2117
- "3.9"
2218
- "3.10"
19+
- "3.11"
20+
- "3.12"
2321

2422
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
2523
runs-on: ${{ matrix.os }}
@@ -29,13 +27,12 @@ jobs:
2927
- uses: actions/checkout@v2
3028

3129
- name: Set up Python ${{ matrix.python-version }}
32-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v5
3331
with:
3432
python-version: ${{ matrix.python-version }}
3533

3634
- name: Install dependencies
3735
run: |
38-
python -m pip install --upgrade pip
3936
pip install bandit flake8 pylint
4037
4138
- name: Lint with flake8
@@ -52,7 +49,7 @@ jobs:
5249
strategy:
5350
matrix:
5451
os:
55-
- ubuntu-20.04
52+
- ubuntu-24.04
5653
builder:
5754
- docker
5855
- podman

weercd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def send(self, message):
157157
"""Send an IRC message to the client."""
158158
self.conn.send(message)
159159

160-
# pylint: disable=too-many-arguments
160+
# pylint: disable=too-many-arguments, too-many-positional-arguments
161161
def send_command(self, command, data, nick=None, host="", target=None):
162162
"""Send an IRC command to the client."""
163163
if nick is None:

0 commit comments

Comments
 (0)