Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit b1edac8

Browse files
authored
chore: project maintenance (#26)
1 parent 3de404a commit b1edac8

File tree

7 files changed

+24
-62
lines changed

7 files changed

+24
-62
lines changed

.cz.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ commitizen:
66
version: 2023.4.0
77
version_files:
88
- project.json
9+
version_scheme: pep440

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ci
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
pre-commit:
12+
uses: coatl-dev/workflows/.github/workflows/pre-commit.yml@v7
13+
with:
14+
skip-hooks: 'pylint'
15+
16+
pylint:
17+
needs: pre-commit
18+
uses: coatl-dev/workflows/.github/workflows/pylint.yml@v7

.github/workflows/main.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ repos:
88
hooks:
99
- id: ssort
1010
- repo: https://github.com/psf/black
11-
rev: 23.3.0
11+
rev: 23.9.1
1212
hooks:
1313
- id: black
1414
- repo: https://github.com/PyCQA/isort
1515
rev: 5.12.0
1616
hooks:
1717
- id: isort
1818
- repo: https://github.com/PyCQA/docformatter
19-
rev: v1.7.3
19+
rev: v1.7.5
2020
hooks:
2121
- id: docformatter
2222
args: [--in-place, --wrap-summaries=72, --close-quotes-on-newline]
@@ -36,6 +36,6 @@ repos:
3636
language: system
3737
types: [python]
3838
- repo: https://github.com/commitizen-tools/commitizen
39-
rev: 3.5.2
39+
rev: 3.10.0
4040
hooks:
4141
- id: commitizen

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ persistent=yes
8888

8989
# Minimum Python version to use for version dependent checks. Will default to
9090
# the version used to run pylint.
91-
py-version=3.10
91+
py-version=3.11
9292

9393
# Discover python modules and packages in the file system subtree.
9494
recursive=no

.sourcery.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@ rule_settings:
1212
enable:
1313
- default
1414
disable:
15-
- dict-assign-update-to-union
1615
- lift-return-into-if
17-
- use-fstring-for-formatting
1816
rule_types:
1917
- refactoring
2018
- suggestion
2119
- comment
22-
python_version: "3.10"
20+
python_version: '3.3'
2321

2422
metrics:
2523
quality_threshold: 25.0

tox.ini

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)