-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,095 additions
and
857 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
labels: | ||
- dependencies | ||
commit-message: | ||
prefix: "build(deps)" |
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,16 @@ | ||
name: Poetry Build | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
poetry-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install poetry | ||
run: pipx install poetry | ||
|
||
- run: poetry build |
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,43 +1,41 @@ | ||
ci: | ||
autofix_prs: false | ||
autoupdate_schedule: quarterly | ||
autoupdate_commit_msg: 'chore: [pre-commit.ci] pre-commit autoupdate' | ||
|
||
repos: | ||
- repo: /~https://github.com/charliermarsh/ruff-pre-commit | ||
rev: 'v0.0.262' | ||
- repo: /~https://github.com/astral-sh/ruff-pre-commit | ||
rev: 'v0.1.11' | ||
hooks: | ||
- id: ruff | ||
args: [ --fix, --exit-non-zero-on-fix ] | ||
- id: ruff-format | ||
|
||
- repo: /~https://github.com/psf/black | ||
rev: "23.3.0" | ||
hooks: | ||
- id: black | ||
|
||
- repo: local | ||
- repo: /~https://github.com/pre-commit/mirrors-mypy | ||
rev: 'v1.8.0' | ||
hooks: | ||
- id: mypy | ||
name: mypy | ||
entry: poetry run mypy | ||
require_serial: true | ||
language: system | ||
types: [python] | ||
additional_dependencies: | ||
- types-requests | ||
- types-python-dateutil | ||
- types-tqdm | ||
- types-PyYAML | ||
|
||
- repo: /~https://github.com/pre-commit/pre-commit-hooks | ||
rev: "v4.4.0" | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: debug-statements | ||
- id: check-ast | ||
|
||
- repo: /~https://github.com/jorisroovers/gitlint | ||
rev: 'v0.19.1' | ||
- repo: /~https://github.com/commitizen-tools/commitizen | ||
rev: 'v3.13.0' | ||
hooks: | ||
- id: gitlint | ||
- id: commitizen | ||
|
||
- repo: /~https://github.com/python-poetry/poetry | ||
rev: '1.4.2' | ||
rev: '1.7.1' | ||
hooks: | ||
- id: poetry-check | ||
- id: poetry-lock | ||
- id: poetry-export |
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,49 @@ | ||
## Unreleased | ||
|
||
### Feat | ||
|
||
- Allow configuration of config envvar | ||
- Add config file support | ||
|
||
### Fix | ||
|
||
- Update user-agent URL | ||
|
||
### Refactor | ||
|
||
- Use requests lib for all requests | ||
|
||
## v0.5.1 (2023-04-26) | ||
|
||
### Fix | ||
|
||
- Package entrypoint moved | ||
|
||
## v0.5.0 (2023-04-26) | ||
|
||
### Fix | ||
|
||
- Propagate package version where needed | ||
|
||
## v0.4.3 (2023-04-22) | ||
|
||
## v0.4.2 (2023-04-22) | ||
|
||
## v0.4.1 (2023-04-21) | ||
|
||
### Fix | ||
|
||
- Restore slugify functionality | ||
- PyPI references improvements | ||
|
||
## v0.4.0 (2023-04-21) | ||
|
||
### Fix | ||
|
||
- Restore argparse error handling | ||
- Restore progress bar functionality | ||
- Make script callable properly via main func | ||
|
||
### Refactor | ||
|
||
- Pay down complexity tech debt |
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,5 @@ | ||
.PHONY: git-hooks | ||
git-hooks: .git/hooks/pre-commit .git/hooks/commit-msg | ||
|
||
.git/hooks/%: | ||
@pre-commit install --hook-type $* |
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 +1 @@ | ||
__version__ = "dev" | ||
__version__ = "v0.5.1" |
Oops, something went wrong.