Skip to content

Commit

Permalink
Run twine with pipenv
Browse files Browse the repository at this point in the history
  • Loading branch information
kirkedev committed Mar 9, 2020
1 parent dd0cad7 commit a15f23b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
run: bin/build

- name: Upload to PyPI test repository
run: twine upload dist/* --repository-url https://test.pypi.org/legacy/ -u __token__ -p ${{ secrets.PYPI_TEST_TOKEN }}
run: pipenv run twine upload dist/* --repository-url https://test.pypi.org/legacy/ -u __token__ -p ${{ secrets.PYPI_TEST_TOKEN }}
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@
keywords=['usda', 'agriculture', 'livestock', 'commodities', 'trading'],
include_package_data=True,
python_requires='>=3.7.*',
install_requires=['aiohttp', 'numpy', 'pandas', 'isoweek', 'pytz'])
install_requires=['aiohttp', 'numpy', 'pandas', 'isoweek', 'pytz'],
setup_requires=['wheel'])

0 comments on commit a15f23b

Please sign in to comment.