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

update pypi publish workflow #14

Merged
merged 3 commits into from
May 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.4.0
- name: Cache Poetry virtualenv
Expand Down Expand Up @@ -48,10 +48,10 @@ jobs:
needs: publish-test-pypi
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.9
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.4.0
- name: Cache Poetry virtualenv
Expand All @@ -72,7 +72,7 @@ jobs:
poetry install
poetry run sh setup.sh
poetry run pip install -r requirements-dev.txt
- name: Build package under skyplane name
- name: Build package under tart-lib name
run: |
export TARTVERSION=`poetry version | awk 'END {print $NF}'`
poetry build
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tool.poetry]
name = "tart"
name = "tart-lib"
packages = [{ include = "tart" }]
version = "0.1.0"
description = ""
authors = ["manishshettym <manishs@berkeley.edu>"]
Expand Down
3 changes: 0 additions & 3 deletions setup.cfg

This file was deleted.

12 changes: 0 additions & 12 deletions setup.py

This file was deleted.