Skip to content

Commit

Permalink
Bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
lan496 committed Apr 22, 2024
1 parent db36a84 commit 4ab56dd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: pypi-${{ matrix.python }}-${{ matrix.buildplat[1] }}
path: ./wheelhouse/*.whl

build_sdist:
Expand All @@ -71,6 +72,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: pypi-sdist
path: dist/*.tar.gz

deploy-pypi:
Expand All @@ -81,7 +83,8 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
name: pypi-*
merge-multiple: true
path: dist

- name: Publish package to TestPyPI
Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,31 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-yaml

# formatter
- repo: https://github.com/psf/black
rev: 23.9.1
rev: 24.4.0
hooks:
- id: black
# linter
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
exclude: ^docs/
# type annotation
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.5.1
rev: v1.9.0
hooks:
- id: mypy
exclude: ^docs/
# isort
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
name: isort (python)
Expand All @@ -41,7 +41,7 @@ repos:
types: [pyi]
# Upgrade syntax
- repo: https://github.com/asottile/pyupgrade
rev: v3.10.1
rev: v3.15.2
hooks:
- id: pyupgrade
- repo: https://github.com/pocc/pre-commit-hooks
Expand Down

0 comments on commit 4ab56dd

Please sign in to comment.