-
Notifications
You must be signed in to change notification settings - Fork 227
chore: add release automation #1105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
ace3505
chore: add release automation
bdraco ea8a967
fix: coverage
bdraco 195270a
chore: move changelog to CHANGELOG.md so it can be auto generated
bdraco bd79d13
fix: windows ci env fix
bdraco d65e31e
fix: add by pypy
bdraco a6c524f
fix: yaml
bdraco 727b60e
fix: cleanup docs
bdraco a2109e7
fix: dep install
bdraco f0561d6
fix: dep install
bdraco 16b0acb
fix: dep install
bdraco 421ce1a
fix: excludes
bdraco e52b7f8
fix: excludes
bdraco 3f153cc
fix: drop gcc install since its already latest
bdraco 181adbd
fix: add missing CHANGELOG.md
bdraco e92dbf6
fix: mypy
bdraco 0a9a325
fix: mypy
bdraco 90775d4
fix: semantic release
bdraco f564624
fix: more lint
bdraco 55a9320
fix: more lint
bdraco 06f1029
fix: lint
bdraco f087f80
fix: lint
bdraco 94e0c84
fix: coverage
bdraco 1593a2f
fix: ci
bdraco 1519dc4
fix: lint
bdraco 45c47b2
fix: typo in refactor
bdraco d99ecca
fix: lint
bdraco 6eb4602
Update .github/workflows/ci.yml
bdraco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,5 +1,5 @@ | ||
| [report] | ||
| exclude_lines = | ||
| exclude_lines = | ||
| pragma: no cover | ||
| if TYPE_CHECKING: | ||
| if sys.version_info |
This file contains hidden or 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,4 @@ | ||
| [flake8] | ||
| exclude = docs | ||
| max-line-length = 180 | ||
| extend-ignore = E203 |
This file contains hidden or 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 hidden or 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,61 @@ | ||
| # See https://pre-commit.com for more information | ||
| # See https://pre-commit.com/hooks.html for more hooks | ||
| exclude: "CHANGELOG.md" | ||
| default_stages: [commit] | ||
|
|
||
| ci: | ||
| autofix_commit_msg: "chore(pre-commit.ci): auto fixes" | ||
| autoupdate_commit_msg: "chore(pre-commit.ci): pre-commit autoupdate" | ||
|
|
||
| repos: | ||
| - repo: https://github.com/commitizen-tools/commitizen | ||
| rev: v2.32.4 | ||
| hooks: | ||
| - id: commitizen | ||
| stages: [commit-msg] | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v4.3.0 | ||
| hooks: | ||
| - id: debug-statements | ||
| - id: check-builtin-literals | ||
| - id: check-case-conflict | ||
| - id: check-docstring-first | ||
| - id: check-json | ||
| - id: check-toml | ||
| - id: check-xml | ||
| - id: check-yaml | ||
| - id: detect-private-key | ||
| - id: end-of-file-fixer | ||
| - id: trailing-whitespace | ||
| - id: debug-statements | ||
| - repo: https://github.com/pre-commit/mirrors-prettier | ||
| rev: v2.7.1 | ||
| hooks: | ||
| - id: prettier | ||
| args: ["--tab-width", "2"] | ||
| - repo: https://github.com/asottile/pyupgrade | ||
| rev: v2.37.3 | ||
| hooks: | ||
| - id: pyupgrade | ||
| args: [--py37-plus] | ||
| - repo: https://github.com/PyCQA/isort | ||
| rev: 5.10.1 | ||
| hooks: | ||
| - id: isort | ||
| - repo: https://github.com/psf/black | ||
| rev: 22.8.0 | ||
| hooks: | ||
| - id: black | ||
| # - repo: https://github.com/codespell-project/codespell | ||
| # rev: v2.2.1 | ||
| # hooks: | ||
| # - id: codespell | ||
| - repo: https://github.com/PyCQA/flake8 | ||
| rev: 5.0.4 | ||
| hooks: | ||
| - id: flake8 | ||
| - repo: https://github.com/pre-commit/mirrors-mypy | ||
| rev: v0.931 | ||
| hooks: | ||
| - id: mypy | ||
| additional_dependencies: [] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.