Skip to content

Commit 2b35afc

Browse files
committed
BUG: Fix pypi publishing problems
1 parent 2b6ca35 commit 2b35afc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish_package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ jobs:
2727
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
2828
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2929
run: |
30-
python setup.py sdist bdist_wheel
30+
python setup.py sdist
3131
twine upload dist/*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def read_file(filename):
2929
python_requires=">=3.6.1",
3030
install_requires=["lark-parser==0.8.1", "pandas>=1.0.0"],
3131
project_urls={
32-
"Source": "https://github.com/zbrookle/dataframe_sql",
32+
"Source Code": "https://github.com/zbrookle/dataframe_sql",
3333
"Documentation": "",
3434
},
3535
url="https://github.com/zbrookle/dataframe_sql",

0 commit comments

Comments
 (0)