File tree Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Expand file tree Collapse file tree 6 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 66 - published
77
88env :
9- LIBZIM_DL_VERSION : " 8.2.1-1 "
9+ LIBZIM_DL_VERSION : " 9.0.0 "
1010 MACOSX_DEPLOYMENT_TARGET : " 12.0"
1111 CIBW_ENVIRONMENT_PASS_LINUX : " LIBZIM_DL_VERSION"
1212 # APPLE_SIGNING_KEYCHAIN_PATH set in prepare keychain step
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: test
22on : [push]
33
44env :
5- LIBZIM_DL_VERSION : " nightly "
5+ LIBZIM_DL_VERSION : " 9.0.0 "
66 MACOSX_DEPLOYMENT_TARGET : " 12.0"
77
88jobs :
Original file line number Diff line number Diff line change 77 - main
88
99env :
10- LIBZIM_DL_VERSION : " nightly "
10+ LIBZIM_DL_VERSION : " 9.0.0 "
1111 MACOSX_DEPLOYMENT_TARGET : " 12.0"
1212 CIBW_ENVIRONMENT_PASS_LINUX : " LIBZIM_DL_VERSION"
1313 CIBW_BUILD_VERBOSITY : " 3"
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ Unreleased]
9+
10+ ### Changed
11+
12+ - Using C++ libzim 9.0.0
13+
814## [ 3.2.0] - 2023-09-15
915
1016### Added
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ test_requires =
4848
4949[options.package_data]
5050libzim =
51- libzim.8 .dylib
52- libzim.so.8
51+ libzim.9 .dylib
52+ libzim.so.9
5353
5454[isort]
5555profile = black
Original file line number Diff line number Diff line change 2929
3030
3131class Config :
32- libzim_dl_version : str = os .getenv ("LIBZIM_DL_VERSION" , "8.2.1-1 " )
32+ libzim_dl_version : str = os .getenv ("LIBZIM_DL_VERSION" , "9.0.0 " )
3333 use_system_libzim : bool = bool (os .getenv ("USE_SYSTEM_LIBZIM" , False ))
3434 download_libzim : bool = not bool (os .getenv ("DONT_DOWNLOAD_LIBZIM" , False ))
3535
@@ -62,7 +62,7 @@ class Config:
6262 @property
6363 def libzim_major (self ) -> str :
6464 # assuming nightlies are for version 8.x
65- return 8 if self .is_nightly else self .libzim_dl_version [0 ]
65+ return 9 if self .is_nightly else self .libzim_dl_version [0 ]
6666
6767 @property
6868 def found_libzim (self ) -> str :
You can’t perform that action at this time.
0 commit comments