File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 17
17
- name : Set up Python
18
18
uses : actions/setup-python@v3
19
19
with :
20
- python-version : ' 3.11' # Set your Python version here
20
+ python-version : ' 3.11' # Specify your Python version here
21
21
22
22
- name : Install dependencies
23
23
run : pip install -r requirements.txt
@@ -41,10 +41,11 @@ jobs:
41
41
run : pip install -r requirements.txt
42
42
43
43
- name : Build package
44
- run : python setup.py sdist bdist_wheel
44
+ run : |
45
+ python setup.py sdist
46
+ python setup.py bdist_wheel
45
47
46
48
- name : Publish to PyPI
47
49
uses : pypa/gh-action-pypi-publish@v1.7.1
48
50
with :
49
51
password : ${{ secrets.PYPI_API_TOKEN }}
50
-
Original file line number Diff line number Diff line change
1
+ # requirements.txt
1
2
pandas
2
3
requests
3
4
pytest
4
- pytest-mock
5
+ pytest-mock
6
+ wheel
You can’t perform that action at this time.
0 commit comments