We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9442840 commit 6c23b7fCopy full SHA for 6c23b7f
Makefile
@@ -1,9 +1,11 @@
1
.PHONY: build upload
2
3
build:
4
- python setup.py sdist
+ rm -rf dist/ build/
5
+ python -m pip install build
6
+ python -m build .
7
8
upload:
- twine upload dist/openai-*.tar.gz
- rm dist/openai-*.tar.gz
9
-
+ python -m pip install twine
10
+ python -m twine upload dist/openai-*
11
+ rm -rf dist
openai/version.py
@@ -1 +1 @@
-VERSION = "0.27.1"
+VERSION = "0.27.2"
0 commit comments