Skip to content

Commit

Permalink
Test on latest OS and Python versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
flashcode committed Oct 14, 2024
1 parent 33ce8a3 commit 5168289
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ jobs:
strategy:
matrix:
os:
- ubuntu-22.04
- ubuntu-20.04
- ubuntu-24.04
- macos-12
- macos-11
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions gitchart/gitchart.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class GitChart:
datetime.date(2001, month, 1).strftime("%b") for month in range(1, 13)
]

# pylint: disable=too-many-arguments,too-many-positional-arguments
# pylint: disable=too-many-positional-arguments
def __init__(
self,
chart_name,
Expand Down Expand Up @@ -227,7 +227,7 @@ def _git_command_log(self, arguments, command2=None):
git_log_cmd += [arguments]
return self._git_command(git_log_cmd, command2)

# pylint: disable=too-many-arguments,too-many-positional-arguments
# pylint: disable=too-many-positional-arguments
def _generate_bar_chart(
self,
data,
Expand Down

0 comments on commit 5168289

Please sign in to comment.