Skip to content

Commit 8d6f936

Browse files
committed
fix artifacts pattern
1 parent 20b187c commit 8d6f936

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/pythonpackage.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,14 @@ jobs:
7979
upload-pypi:
8080
if: github.event_name == 'release' && github.event.action == 'published'
8181
needs: [build-wheels, build-sdist]
82-
8382
runs-on: ubuntu-20.04
8483

8584
steps:
8685
- uses: actions/download-artifact@v4
8786
with:
88-
pattern: artifact=*
87+
pattern: artifact-*
8988
path: dist
9089
merge-multiple: true
91-
9290
- uses: pypa/gh-action-pypi-publish@release/v1
9391
with:
9492
user: __token__

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ repos:
44
hooks:
55
- id: check-added-large-files
66
- id: check-case-conflict
7+
- id: check-json
78
- id: check-merge-conflict
89
- id: check-symlinks
9-
- id: check-json
1010
- id: check-toml
1111
- id: check-yaml
1212
- id: debug-statements
@@ -23,7 +23,7 @@ repos:
2323
- id: pretty-format-yaml
2424
args: [--autofix]
2525
- repo: https://github.com/tox-dev/pyproject-fmt
26-
rev: 2.2.4
26+
rev: 2.3.1
2727
hooks:
2828
- id: pyproject-fmt
2929
- repo: https://github.com/pre-commit/mirrors-clang-format

pyproject.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ requires = [
1010
name = "encoders"
1111
version = "0.0.4"
1212
description = "Faster than scikit encoders"
13-
readme = "readme.md"
13+
readme = { file = "readme.md", content-type = "text/markdown" }
1414
license = { text = "ISC License" }
15-
authors = [ { name = "Dobatymo" } ]
15+
authors = [
16+
{ name = "Dobatymo", email = "[email protected]" },
17+
]
1618
requires-python = ">=3.8"
1719
classifiers = [
1820
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)