Skip to content

Commit 70dcabe

Browse files
committed
0.7.2
1 parent d5f028d commit 70dcabe

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/python-publish.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,15 @@ jobs:
3838
# Step 5: Build the wheel
3939
- name: Build the wheel
4040
run: |
41-
if [ ! -d "past-0.7.0" ]; then
42-
wget https://master.dl.sourceforge.net/project/pocc/1.6/release/modules/past-0.7.0.tar.gz
43-
tar -xvf past-0.7.0.tar.gz
44-
cp setup.py ./past-0.7.0/
45-
cp bindings.cpp ./past-0.7.0/src/
46-
cp Makefile.am ./past-0.7.0/src/
41+
if [ ! -d "past-0.7.2" ]; then
42+
wget https://master.dl.sourceforge.net/project/pocc/1.6/testing/modules/past-0.7.2.tar.gz
43+
tar -xvf past-0.7.2.tar.gz
44+
cp ../setup.py ./past-0.7.2/
45+
cp ../bindings.cpp ./past-0.7.2/src/
46+
cp ../Makefile.am ./past-0.7.2/src/
47+
sed -i 's/\<restrict\>/__restrict__/g' ./past-0.7.2/past/include/past/abstract_interpretation_memory.h
4748
fi
48-
cd past-0.7.0
49+
cd past-0.7.2
4950
python setup.py bdist_wheel
5051
mv dist ../
5152

0 commit comments

Comments
 (0)