Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mit lite #100

Merged
merged 14 commits into from
Feb 6, 2024
7 changes: 3 additions & 4 deletions .github/workflows/build-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest setuptools wheel twine
python -m pip install flake8 pytest setuptools wheel twine build
pip install -e .
pip install -r requirements.txt
- name: Build binary wheel and a source tarball
run: |
python setup.py install
python setup.py sdist bdist_wheel
python -m build
- run: echo 'Tests successful. Publishing to PyPI now.'
- name: Build app (Ubuntu / macOS)
- name: Build app for PyPI (Ubuntu)
env:
USERNAME: ${{ secrets.pypi_token }}
KEY: ${{ secrets.pypi_api }}
Expand Down
Loading