Skip to content

Commit 0f7ddb2

Browse files
committed
Fix bug
1 parent 370f96a commit 0f7ddb2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/pyarmor-smoke-test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ jobs:
1111
- run: sudo add-apt-repository ppa:deadsnakes
1212
- run: sudo apt-get update
1313
- run: sudo apt-get install python3.13-nogil
14-
- run: python3.13t -m pip install https://pyarmor.dashingsoft.com/downloads/temp/pyarmor.mini-1.0-cp313t-none-manylinux1_x86_64.whl
14+
- run: wget https://pyarmor.dashingsoft.com/downloads/temp/pyarmor_mini.tar.gz
15+
- run: tar xzf pyarmor_mini.tar.gz
16+
- run: cp linux.x86_64/libs/cp3.13t/pyarmor_minit.so .
1517
- run: python3.13t -c "import pyarmor_mini"
1618
# - run: wget https://pyarmor.dashingsoft.com/downloads/temp/pyarmor-smoke-test.tar.gz
1719
# - run: tar xzf pyarmor-smoke-test.tar.gz
@@ -25,5 +27,7 @@ jobs:
2527
runs-on: macos-13
2628
steps:
2729
- run: brew install python-freethreading
28-
- run: $(brew --prefix)/bin/python3.13t -m pip install https://pyarmor.dashingsoft.com/downloads/temp/pyarmor.mini-1.0-cp313t-none-macosx_10_14_x86_64.whl
30+
- run: curl -O https://pyarmor.dashingsoft.com/downloads/temp/pyarmor_mini.tar.gz
31+
- run: tar xzf pyarmor_mini.tar.gz
32+
- run: cp darwin.x86_64/libs/cp3.13t/pyarmor_minit.so .
2933
- run: $(brew --prefix)/bin/python3.13t -c "import pyarmor_mini"

0 commit comments

Comments
 (0)