summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml14
-rw-r--r--configure.ac4
2 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index ae8b8dd..68948af 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -12,11 +12,11 @@ jobs:
- name: install dependencies
run: |
sudo apt-get update
- sudo apt-get install cython3
+ pip install cython
- name: prepare environment
run: |
echo "target_triplet=`gcc -dumpmachine`" >> $GITHUB_ENV
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: autogen
@@ -36,7 +36,7 @@ jobs:
DESTDIR=`pwd`/dest make install
tar -C dest -cf libplist.tar usr
- name: publish artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: libplist-latest_${{env.target_triplet}}
path: libplist.tar
@@ -52,7 +52,7 @@ jobs:
fi
pip3 install cython
shell: bash
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: autogen
@@ -90,7 +90,7 @@ jobs:
DESTDIR=`pwd`/dest make install
tar -C dest -cf libplist.tar usr
- name: publish artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: libplist-latest_macOS
path: libplist.tar
@@ -127,7 +127,7 @@ jobs:
echo "dest=$dest" >> $GITHUB_ENV
echo "target_triplet=`gcc -dumpmachine`" >> $GITHUB_ENV
git config --global core.autocrlf false
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
with:
fetch-depth: 0
- name: autogen
@@ -156,7 +156,7 @@ jobs:
DESTDIR=`pwd`/dest make install
tar -C dest -cf libplist.tar ${{ env.dest }}
- name: publish artifact
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: libplist-latest_${{ matrix.arch }}-${{ env.dest }}
path: libplist.tar
diff --git a/configure.ac b/configure.ac
index 757ea95..fe6592b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -147,9 +147,9 @@ AC_ARG_WITH([cython],
[build_cython=false],
[build_cython=true])
if test "$build_cython" = "true"; then
- AC_PROG_CYTHON([0.17.0])
+ AC_PROG_CYTHON([3.0.0])
if [test "x$CYTHON" != "xfalse"]; then
- AM_PATH_PYTHON([2.3], [CYTHON_PYTHON])
+ AM_PATH_PYTHON([3.0], [CYTHON_PYTHON])
fi
else
CYTHON=false