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 3f356eb commit b8d2c50Copy full SHA for b8d2c50
build.sh
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+
3
+# last version of `build` supporting Python 3.6
4
+pip install build==0.9.0
5
6
+# build the wheel and install it
7
+WHEEL_NAME=$(python -m build | grep -Po "fastapi_oauth2-.*\.whl" | tail -n 1)
8
+pip install dist/$WHEEL_NAME
0 commit comments