Skip to content

Commit

Permalink
issue with publish
Browse files Browse the repository at this point in the history
  • Loading branch information
tuttlepower committed Aug 3, 2024
1 parent 90c6f6c commit 652cb5f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11' # Set your Python version here
python-version: '3.11' # Specify your Python version here

- name: Install dependencies
run: pip install -r requirements.txt
Expand All @@ -41,10 +41,11 @@ jobs:
run: pip install -r requirements.txt

- name: Build package
run: python setup.py sdist bdist_wheel
run: |
python setup.py sdist
python setup.py bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.7.1
with:
password: ${{ secrets.PYPI_API_TOKEN }}

4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# requirements.txt
pandas
requests
pytest
pytest-mock
pytest-mock
wheel

0 comments on commit 652cb5f

Please sign in to comment.