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
846 changes: 0 additions & 846 deletions .build

This file was deleted.

2 changes: 0 additions & 2 deletions .codecov.yml

This file was deleted.

13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version:
- 3.14

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v7
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 flake8-blind-except flake8-comprehensions flake8-docstrings flake8-eradicate
- name: Lint with flake8
pip install -U --disable-pip-version-check black flake8 flake8-blind-except flake8-comprehensions flake8-docstrings flake8-eradicate
- name: Run linters
run: |
black --check .
flake8 .
36 changes: 0 additions & 36 deletions .pre-commit-config.yaml

This file was deleted.

1 change: 1 addition & 0 deletions lib/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

Copyright (c) 2017-2018, NEGORO Tetsuya (https://github.com/ngr-t)
"""

import re
from collections import defaultdict
from datetime import datetime
Expand Down
Loading