Skip to content

Commit

Permalink
Conda forge fixes (#47)
Browse files Browse the repository at this point in the history
* fixed bug where cks were using interval scope

* added a fix for conda-forge

* more fixes for conda-forge

* changed install command

* removed CXX line

* removed redis submodule
  • Loading branch information
Kelvinrr authored Nov 4, 2024
1 parent ace54b6 commit d3de2a8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
path = extern/pybind11
url = ../../pybind/pybind11
branch = stable
[submodule "submodules/redis-plus-plus"]
path = submodules/redis-plus-plus
url = https://github.com/sewenew/redis-plus-plus.git
[submodule "submodules/BTree"]
path = submodules/BTree
url = https://github.com/frozenca/BTree.git
2 changes: 2 additions & 0 deletions SpiceQL/src/inventoryimpl.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#include <iostream>
#include <regex>

// we need to include this to overwrite and other std::fs imports
#include <ghc/fs_std.hpp>
#include <nlohmann/json.hpp>
#include <fc/btree.h>
#include <fc/disk_btree.h>
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/__init__.py
COPYONLY)

# Setup to run setup tools on install
install(CODE "execute_process(COMMAND python -m pip install -e . WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})")
install(CODE "execute_process(COMMAND pip install . WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})")
1 change: 0 additions & 1 deletion submodules/redis-plus-plus
Submodule redis-plus-plus deleted from afa0e3

0 comments on commit d3de2a8

Please sign in to comment.