File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -185,11 +185,16 @@ jobs:
185
185
name : Build wheels on macos-13
186
186
runs-on : macos-13
187
187
env :
188
- SQLite3_ROOT : /usr/local/opt/ sqlite
189
- MACOSX_DEPLOYMENT_TARGET : ' 13 '
188
+ SQLite3_ROOT : ./ sqlite-autoconf-3460100/.libs
189
+ MACOSX_DEPLOYMENT_TARGET : ' 10.9 '
190
190
CIBW_SKIP : cp27-* cp35-* cp36-*
191
191
CIBW_TEST_COMMAND : python -c "import pygeodiff; pygeodiff.GeoDiff().version()"
192
-
192
+ CIBW_BEFORE_ALL : >
193
+ wget https://www.sqlite.org/2024/sqlite-autoconf-3460100.tar.gz &&
194
+ tar -xzvf sqlite-autoconf-3460100.tar.gz &&
195
+ cd sqlite-autoconf-3460100 &&
196
+ CC=clang CFLAGS="-arch x86_64 -Os -DDSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_RTREE -DSQLITE_DQS=0 -DSQLITE_ENABLE_COLUMN_METADATA" ./configure; make
197
+
193
198
steps :
194
199
- uses : actions/checkout@v3
195
200
Original file line number Diff line number Diff line change 34
34
// use scripts/update_version.py to update the version here and in other places at once
35
35
const char *GEODIFF_version ()
36
36
{
37
- return " 2.0.2 " ;
37
+ return " 2.0.3 " ;
38
38
}
39
39
40
40
int GEODIFF_driverCount ( GEODIFF_ContextH /* contextHandle*/ )
Original file line number Diff line number Diff line change 2
2
__description__ = "Diff tool for geo-spatial data"
3
3
__url__ = "https://github.com/MerginMaps/geodiff"
4
4
# use scripts/update_version.py to update the version here and in other places at once
5
- __version__ = "2.0.2 "
5
+ __version__ = "2.0.3 "
6
6
__author__ = "Lutra Consulting Ltd."
7
7
__author_email__ = "[email protected] "
8
8
__maintainer__ = "Lutra Consulting Ltd."
Original file line number Diff line number Diff line change 5
5
import platform
6
6
7
7
# use scripts/update_version.py to update the version here and in other places at once
8
- VERSION = "2.0.2 "
8
+ VERSION = "2.0.3 "
9
9
10
10
cmake_args = [
11
11
'-DENABLE_TESTS:BOOL=OFF' ,
You can’t perform that action at this time.
0 commit comments