Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:
push:
branches:
- main
- 'maint-**'
- 'branch-**'
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -70,8 +70,15 @@ jobs:
path: vcpkg

- name: Set SedonaDB dev version
shell: bash
run: |
python ci/scripts/set_dev_version.py
# Set the unique development version anywhere except a release branch
if [[ "${GITHUB_REF##*/}" =~ ^branch-[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
version="${GITHUB_REF##*/branch-}"
echo "${version}"
else
python ci/scripts/set_dev_version.py
fi

- name: Build and test wheels (sedonadb)
run: |
Expand Down
2 changes: 1 addition & 1 deletion c/sedona-proj/src/proj.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ impl ProjContext {
/// - PJ_LOG_LEVEL_PJ_LOG_TELL (4): Tell
pub(crate) fn set_log_level(&self, level: u32) -> Result<(), SedonaProjError> {
unsafe {
call_proj_api!(self.api, proj_log_level, self.inner, level);
call_proj_api!(self.api, proj_log_level, self.inner, level as _);
}
Ok(())
}
Expand Down