Skip to content

Commit 6c23b7f

Browse files
authored
Create wheels (#297)
1 parent 9442840 commit 6c23b7f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
.PHONY: build upload
22

33
build:
4-
python setup.py sdist
4+
rm -rf dist/ build/
5+
python -m pip install build
6+
python -m build .
57

68
upload:
7-
twine upload dist/openai-*.tar.gz
8-
rm dist/openai-*.tar.gz
9-
9+
python -m pip install twine
10+
python -m twine upload dist/openai-*
11+
rm -rf dist

openai/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.27.1"
1+
VERSION = "0.27.2"

0 commit comments

Comments
 (0)