Skip to content

Commit 4069220

Browse files
authored
Merge pull request #65 from rmnldwg/release-1.0.0.a3
Release 1.0.0.a3
2 parents 259e4d2 + dc9a5a4 commit 4069220

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+3619
-2752
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: install dependencies
3333
run: |
3434
python3 -m pip install -U pip setuptools setuptools-scm wheel
35-
python3 -m pip install .[tests]
35+
python3 -m pip install .[test]
3636
- name: Run tests
3737
run: |
3838
python3 -m pytest --doctest-modules

.pre-commit-config.yaml

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,35 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
3+
rev: v4.6.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
7-
- repo: https://github.com/hadialqattan/pycln
8-
rev: v2.1.3
7+
- repo: https://github.com/astral-sh/ruff-pre-commit
8+
rev: v0.5.4
99
hooks:
10-
- id: pycln
11-
args: [--config=pyproject.toml]
12-
- repo: https://github.com/PyCQA/isort
13-
rev: 5.12.0
14-
hooks:
15-
- id: isort
16-
files: "\\.(py)$"
17-
args: [--settings-path=pyproject.toml]
10+
- id: ruff
11+
args: [ --fix ]
12+
- id: ruff-format
1813
- repo: https://github.com/asottile/pyupgrade
19-
rev: v3.15.0
14+
rev: v3.16.0
2015
hooks:
2116
- id: pyupgrade
2217
args: [--py310-plus]
2318
- repo: https://github.com/compilerla/conventional-pre-commit
24-
rev: v2.0.0
19+
rev: v3.3.0
2520
hooks:
2621
- id: conventional-pre-commit
2722
stages: [commit-msg]
2823
args:
2924
- build # changes of the build system or dependencies
3025
- change # commit alters the implementation of an existing feature
3126
- chore # technical or maintenance task not related to feature or user story
32-
- ci # edits to the cintinuous integration scripts/configuration
27+
- ci # edits to the continuous integration scripts/configuration
3328
- deprecate # a feature or functionality will be deprecated
3429
- docs # add, update of revise the documentation
3530
- feat # a new feature was implemented (bump MINOR version)
3631
- fix # an issue or bug has been fixed (bump PATCH version)
37-
- perf # performance improvements that do not alter existing behaviour
32+
- perf # performance improvements that do not alter existing behavior
3833
- refac # update shuffles code around but does not alter functionality
3934
- remove # a feature or functionality is removed
4035
- style # source code is improved w.r.t. its code quality

0 commit comments

Comments
 (0)