Skip to content

Commit 0f75a59

Browse files
committed
Merge branch 'release/1.6.5'
2 parents 8085a94 + d9fb307 commit 0f75a59

File tree

10 files changed

+16
-79
lines changed

10 files changed

+16
-79
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If applicable, add screenshots to help explain your problem.
2424

2525
**Desktop (please complete the following information):**
2626
- OS: [e.g. mac/linux/windows]
27-
- Version [e.g. 1.6.4]
27+
- Version [e.g. 1.6.5]
2828

2929
**Additional context**
3030
Add any other context about the problem here.

CMakeLists.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.18.0)
22
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment version")
3-
project(Griddly VERSION 1.6.4)
3+
project(Griddly VERSION 1.6.5)
44

55
string(TOLOWER ${PROJECT_NAME} PROJECT_NAME_LOWERCASE)
66

@@ -118,8 +118,6 @@ enable_sanitizers(project_options)
118118
# allow for static analysis
119119
include(${CMAKE_CONFIG_FOLDER}/settings/StaticAnalyzers.cmake)
120120

121-
include(${CMAKE_CONFIG_FOLDER}/settings/Conan.cmake)
122-
123121
# glm
124122
find_package(glm REQUIRED)
125123

azure-pipelines.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,9 @@ jobs:
268268
displayName: Install Conan
269269
- bash: |
270270
set -ex
271-
cmake . -DCMAKE_BUILD_TYPE=Release -DPython_ROOT_DIR:STRING="$(py.pythonLocation)"
272-
cmake --build . --target python_griddly --config Release
271+
conan install deps/conanfile.txt --profile default --profile deps/build.profile -s build_type=Release --build missing -if build
272+
cmake . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DPython_ROOT_DIR:STRING="$(py.pythonLocation)"
273+
cmake --build build --config Release
273274
displayName: Build
274275
- script: |
275276
cd python
@@ -382,8 +383,9 @@ jobs:
382383
displayName: Install Conan
383384
- bash: |
384385
set -ex
385-
cmake . -DCMAKE_BUILD_TYPE=Release -DPython_ROOT_DIR:STRING=$(py.pythonLocation)
386-
cmake --build . --config Release
386+
conan install deps/conanfile.txt --profile default --profile deps/build.profile -s build_type=Release --build missing -if build
387+
cmake . -B build -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DPython_ROOT_DIR:STRING="$(py.pythonLocation)"
388+
cmake --build build --config Release
387389
displayName: Build
388390
- script: |
389391
cd python

bindings/python.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace griddly {
1212

1313
PYBIND11_MODULE(python_griddly, m) {
1414
m.doc() = "Griddly python bindings";
15-
m.attr("version") = "1.6.4";
15+
m.attr("version") = "1.6.5";
1616

1717
#ifndef NDEBUG
1818
spdlog::set_level(spdlog::level::debug);

cmake/settings/Conan.cmake

Lines changed: 0 additions & 64 deletions
This file was deleted.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Chris Bamford'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.6.4'
25+
release = '1.6.5'
2626

2727

2828
# -- General configuration ---------------------------------------------------

js/griddlyjs-app/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/griddlyjs-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "griddlyjs-app",
3-
"version": "1.6.4",
3+
"version": "1.6.5",
44
"private": true,
55
"dependencies": {
66
"@fortawesome/fontawesome-svg-core": "^6.1.1",

python/manylinux/build-wheels.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -e
3+
set -ex
44
set -o pipefail
55

66

@@ -19,7 +19,8 @@ echo "Conan Build Finished"
1919

2020
# # Cmake Build Griddly
2121
cd /opt/Griddly
22-
/opt/python/$PYBIN/bin/cmake . -GNinja -DCMAKE_BUILD_TYPE=Release -DMANYLINUX=ON -DPython_ROOT_DIR:STRING=/opt/python/$PYBIN -DPYTHON_EXECUTABLE:FILEPATH=/opt/python/$PYBIN/bin/python -S /opt/Griddly -B /opt/Griddly/build_manylinux
22+
conan install deps/conanfile.txt --profile default --profile deps/build.profile -s build_type=Release --build=* -if build_manylinux
23+
/opt/python/$PYBIN/bin/cmake . -GNinja -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DPython_ROOT_DIR:STRING=/opt/python/$PYBIN -DPYTHON_EXECUTABLE:FILEPATH=/opt/python/$PYBIN/bin/python -S /opt/Griddly -B /opt/Griddly/build_manylinux
2324
/opt/python/$PYBIN/bin/cmake --build /opt/Griddly/build_manylinux --target python_griddly
2425

2526
# # # Create Wheel

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def griddly_package_data(config='Debug'):
7171

7272
setup(
7373
name='griddly',
74-
version="1.6.4",
74+
version="1.6.5",
7575
author_email="chrisbam4d@gmail.com",
7676
description="Griddly Python Libraries",
7777
long_description=long_description,

0 commit comments

Comments
 (0)