File tree Expand file tree Collapse file tree 2 files changed +17
-17
lines changed Expand file tree Collapse file tree 2 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,19 @@ jobs:
22
22
runs-on : ubuntu-latest
23
23
24
24
steps :
25
- - uses : actions/checkout@v3
26
- - name : Set up Python
27
- uses : actions/setup-python@v3
28
- with :
29
- python-version : ' 3.x'
30
- - name : Install dependencies
31
- run : |
32
- python -m pip install --upgrade pip
33
- pip install build
34
- - name : Build package
35
- run : python -m build
36
- - name : Publish package
37
- uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
38
- with :
39
- user : __token__
40
- password : ${{ secrets.PYPI_API_TOKEN }}
25
+ - uses : actions/checkout@v3
26
+ - name : Set up Python
27
+ uses : actions/setup-python@v3
28
+ with :
29
+ python-version : ' 3.x'
30
+ - name : Install dependencies
31
+ run : |
32
+ python -m pip install --upgrade pip
33
+ pip install build
34
+ - name : Build package
35
+ run : python -m build
36
+ - name : Publish package
37
+ uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
38
+ with :
39
+ user : __token__
40
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 3
3
4
4
from setuptools import find_packages , setup
5
5
6
- with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
6
+ with open ("README.md" , encoding = "utf-8" ) as fh :
7
7
long_description = fh .read ()
8
8
9
9
You can’t perform that action at this time.
0 commit comments