We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed928b8 commit f12eb3dCopy full SHA for f12eb3d
1 file changed
.github/workflows/python-publish.yml
@@ -25,13 +25,19 @@ jobs:
25
- name: Set up Python
26
uses: actions/setup-python@v3
27
with:
28
- python-version: '3.x'
+ python-version: '3.11'
29
+
30
- name: Install dependencies
31
run: |
32
python -m pip install --upgrade pip
33
pip install build
34
+ pip install black
35
36
- name: Build package
- run: python -m build
37
+ run: |
38
+ black .
39
+ python setup.py sdist
40
41
- name: Publish package
42
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
43
0 commit comments