-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
shamelessly steal the oxigraph build process
- Loading branch information
Showing
6 changed files
with
86 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
cd /workdir | ||
yum -y install centos-release-scl-rh | ||
yum -y install llvm-toolset-7.0 | ||
source scl_source enable llvm-toolset-7.0 | ||
curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal | ||
curl --verbose -L "https://github.com/PyO3/maturin/releases/latest/download/maturin-%arch%-unknown-linux-musl.tar.gz" | tar -xz -C /usr/local/bin | ||
export PATH="${PATH}:/root/.cargo/bin:/opt/python/cp37-cp37m/bin:/opt/python/cp38-cp38/bin:/opt/python/cp39-cp39/bin:/opt/python/cp310-cp310/bin" | ||
maturin build --release -m python/Cargo.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "reasonable" | ||
version = "0.1.60" | ||
version = "0.1.61" | ||
authors = ["Gabe Fierro <[email protected]>"] | ||
repository = "https://github.com/gtfierro/reasonable" | ||
homepage = "https://brickschema.org/" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "reasonable" | ||
version = "0.1.60" | ||
version = "0.1.61" | ||
description = "Python interface to 'reasonable', a Datalog implementation of the OWL 2 RL profile" | ||
authors = ["Gabe Fierro <[email protected]>"] | ||
license = "bsd-3-clause" | ||
|
@@ -10,6 +10,7 @@ homepage = "https://github.com/gtfierro/reasonable" | |
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
cffi = "^1.15.1" | ||
libclang = "^14.0.6" | ||
|
||
[tool.poetry.dev-dependencies] | ||
maturin = "^0.13" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters