-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Depend on Particle 0.14 * Try to fix README display on PyPI * Bump version number * CHANGELOG update * Copy .pre-commit-config.yaml file from Particle, to please the CI * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * [CI skip] CHANGELOG update Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8b0d7fb
commit 104eb94
Showing
43 changed files
with
1,914 additions
and
1,413 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
repos: | ||
- repo: https://github.com/psf/black | ||
rev: 20.8b1 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v3.3.0 | ||
hooks: | ||
- id: check-added-large-files | ||
args: ['--maxkb=1000'] | ||
- id: mixed-line-ending | ||
- id: trailing-whitespace | ||
- id: check-merge-conflict | ||
- id: check-case-conflict | ||
- id: check-symlinks | ||
- id: check-yaml | ||
- id: requirements-txt-fixer | ||
- id: debug-statements | ||
- id: end-of-file-fixer | ||
- id: fix-encoding-pragma | ||
- repo: https://github.com/mgedmin/check-manifest | ||
rev: "0.45" | ||
hooks: | ||
- id: check-manifest | ||
stages: [manual] | ||
- repo: https://github.com/pre-commit/mirrors-mypy | ||
rev: v0.790 | ||
hooks: | ||
- id: mypy | ||
files: src | ||
additional_dependencies: [attrs==19.3.0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner. | ||
# | ||
# Distributed under the 3-clause BSD license, see accompanying file LICENSE | ||
# or https://github.com/scikit-hep/decaylanguage for details. | ||
|
||
|
||
__version__ = '0.9.1' | ||
__version__ = "0.10.0" | ||
|
||
version = __version__ | ||
version_info = __version__.split('.') | ||
version_info = __version__.split(".") |
Oops, something went wrong.