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.
2 parents b4a6942 + ce9c87c commit 865c102Copy full SHA for 865c102
.github/workflows/package-release.yml renamed to .github/workflows/package.yml
@@ -1,4 +1,4 @@
1
-name: Package and Release
+name: Package
2
3
on:
4
push:
@@ -179,6 +179,10 @@ jobs:
179
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/
180
/usr/local/bin/python3.9 -m venv venv
181
source venv/bin/activate
182
+ # for some reason, pycryptodome won't install when
183
+ # setuptools is installed/upgraded, so install it before
184
+ # install/upgrade setuptools
185
+ pip install pycryptodome==3.9.7
186
python -m pip install --upgrade pip pyinstaller setuptools
187
pip install external/okta-0.0.3.1-py2.py3-none-any.whl
188
pip install -e .
0 commit comments