Skip to content

Commit 13a5073

Browse files
authored
Merge pull request #34 from egen/update-ci
Update CI
2 parents 81a18b8 + 05ebc13 commit 13a5073

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/push.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10']
13+
python-version: ['3.9', '3.9', '3.10', '3.11', '3.12', '3.13']
1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/cache@v2
15+
- uses: actions/checkout@v4
16+
- uses: actions/cache@v4
1717
with:
1818
path: |
1919
~/.cache/pre-commit
2020
~/.cache/pip
2121
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
22-
- uses: actions/setup-python@v2
22+
- uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Install pre-commit
@@ -31,10 +31,10 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
python-version: ['3.8', '3.9', '3.10']
34+
python-version: ['3.9', '3.9', '3.10', '3.11', '3.12', '3.13']
3535
steps:
36-
- uses: actions/checkout@v2
37-
- uses: actions/setup-python@v2
36+
- uses: actions/checkout@v4
37+
- uses: actions/setup-python@v5
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Install dependencies

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ dist
99
.vscode
1010
build
1111
.coverage
12-
htmlcov/
12+
htmlcov/
13+
.history/

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.3.0
3+
rev: v5.0.0
44
hooks:
55
- id: trailing-whitespace
66
- id: check-yaml
77
- id: double-quote-string-fixer
88
- repo: https://github.com/asottile/setup-cfg-fmt
9-
rev: v2.0.0
9+
rev: v2.8.0
1010
hooks:
1111
- id: setup-cfg-fmt
1212
- repo: https://github.com/asottile/reorder_python_imports
13-
rev: v3.8.2
13+
rev: v3.15.0
1414
hooks:
1515
- id: reorder-python-imports
1616
args: [--py37-plus, --add-import, 'from __future__ import annotations']
1717
- repo: https://github.com/asottile/pyupgrade
18-
rev: v2.37.3
18+
rev: v3.20.0
1919
hooks:
2020
- id: pyupgrade
2121
args: [--py37-plus]
22-
- repo: https://github.com/pre-commit/mirrors-autopep8
23-
rev: v1.7.0
22+
- repo: https://github.com/hhatto/autopep8
23+
rev: v2.3.2
2424
hooks:
2525
- id: autopep8

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ url = https://github.com/Qarik-Group/gitlab-codeowners-linter
88
author = Gaspare Vitta
99
author_email = gvitta@qarik.com
1010
license = MIT
11-
license_file = LICENSE
11+
license_files = LICENSE
1212
classifiers =
13-
License :: OSI Approved :: MIT License
1413
Programming Language :: Python :: 3
1514
Programming Language :: Python :: 3 :: Only
1615

0 commit comments

Comments
 (0)