Commit 6c23b7f6

hallacy <hallacy@openai.com>
2023-03-11 11:48:42
Create wheels (#297) tag: v0.27.2
1 parent 9442840
Changed files (2)
openai/version.py
@@ -1,1 +1,1 @@
-VERSION = "0.27.1"
+VERSION = "0.27.2"
Makefile
@@ -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