Skip to content
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: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
.PHONY: build upload

build:
python setup.py sdist
rm -rf dist/ build/
python -m pip install build
python -m build .

upload:
twine upload dist/openai-*.tar.gz
rm dist/openai-*.tar.gz

python -m pip install twine
python -m twine upload dist/openai-*
rm -rf dist
2 changes: 1 addition & 1 deletion openai/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.27.1"
VERSION = "0.27.2"