Skip to content

Commit 1e2de29

Browse files
committed
modernize
1 parent 8b55c73 commit 1e2de29

6 files changed

Lines changed: 64 additions & 210 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v2
88
- uses: actions/setup-python@v2
99
with:
10-
python-version: '3.11'
10+
python-version: '3.13'
1111
- uses: snok/install-poetry@v1
1212
- run: make install
1313
- run: make lint

.pylintrc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ disable=
66
too-many-arguments,
77
too-many-instance-attributes,
88
fixme,
9-
load-plugins=
10-
pylint_quotes,
119

1210
[FORMAT]
1311
max-line-length=120
14-
string-quote=single
15-
triple-quote=double
16-
docstring-quote=double
12+
check-quote-consistency = true

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11
1+
3.13

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
install:
2-
poetry install
2+
poetry install --no-root
33

44
run:
55
poetry run python -m src.main

0 commit comments

Comments
 (0)