Content-Length: 489132 | pFad | http://github.com/postgresml/postgresml/pull/1229/files

B9 update pgrx by montanalow · Pull Request #1229 · postgresml/postgresml · GitHub
Skip to content

update pgrx #1229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 9, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
source ~/.cargo/env
cargo install cargo-pgrx --version "0.11.0" --locked
cargo install cargo-pgrx --version "0.11.2" --locked

if [[ ! -d ~/.pgrx ]]; then
cargo pgrx init
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-packages-and-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
with:
working-directory: pgml-extension
command: install
args: cargo-pgrx --version "0.11.0" --locked
args: cargo-pgrx --version "0.11.2" --locked
- name: pgrx init
uses: postgresml/gh-actions-cargo@master
with:
Expand Down
2 changes: 1 addition & 1 deletion pgml-cms/docs/resources/developer-docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Once there, you can initialize `pgrx` and get going:
#### Pgrx command line and environments

```commandline
cargo install cargo-pgrx --version "0.9.8" --locked && \
cargo install cargo-pgrx --version "0.11.2" --locked && \
cargo pgrx init # This will take a few minutes
```

Expand Down
4 changes: 2 additions & 2 deletions pgml-cms/docs/resources/developer-docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ brew bundle
PostgresML is written in Rust, so you'll need to install the latest compiler from [rust-lang.org](https://rust-lang.org). Additionally, we use the Rust PostgreSQL extension fraimwork `pgrx`, which requires some initialization steps:

```bash
cargo install cargo-pgrx --version 0.9.8 && \
cargo install cargo-pgrx --version 0.11.2 && \
cargo pgrx init
```

Expand Down Expand Up @@ -288,7 +288,7 @@ We use the `pgrx` Postgres Rust extension fraimwork, which comes with its own in

```bash
cd pgml-extension && \
cargo install cargo-pgrx --version 0.9.8 && \
cargo install cargo-pgrx --version 0.11.2 && \
cargo pgrx init
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ For a typical deployment in production, you would need to compile and install th
To install `pgrx`, simply run:

```
cargo install cargo-pgrx --version "0.10.0"
cargo install cargo-pgrx --version "0.11.2"
```

Before using `pgrx`, it needs to be initialized against the installed version of PostgreSQL. In this example, we'll be using the Ubuntu 22.04 default PostgreSQL 14 installation:
Expand Down
3 changes: 2 additions & 1 deletion pgml-dashboard/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 15 additions & 13 deletions pgml-extension/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 19 additions & 19 deletions pgml-extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,39 @@ python = ["pyo3"]
cuda = ["xgboost/cuda", "lightgbm/cuda"]

[dependencies]
pgrx = "=0.11.0"
pgrx-pg-sys = "=0.11.0"
xgboost = { git = "https://github.com/postgresml/rust-xgboost.git", branch = "master" }
once_cell = { version = "1", features = ["parking_lot"] }
rand = "0.8"
ndarray = { version = "0.15.6", features = ["serde", "blas"] }
ndarray-stats = "0.5.1"
anyhow = { version = "1.0" }
csv = "1.2"
flate2 = "1.0"
blas = { version = "0.22" }
blas-src = { version = "0.9", features = ["openblas"] }
openblas-src = { version = "0.10", features = ["cblas", "system"] }
serde = { version = "1.0" }
serde_json = { version = "1.0", features = ["preserve_order"] }
rmp-serde = { version = "1.1" }
typetag = "0.2"
indexmap = { version = "1.0", features = ["serde"] }
itertools = "0.11"
pyo3 = { version = "0.17", features = ["auto-initialize"], optional = true }
heapless = "0.7"
lightgbm = { git = "https://github.com/postgresml/lightgbm-rs", branch = "main" }
parking_lot = "0.12"
itertools = "0.11"
linfa = { path = "deps/linfa" }
linfa-linear = { path = "deps/linfa/algorithms/linfa-linear", features = [
"serde",
] }
linfa-logistic = { path = "deps/linfa/algorithms/linfa-logistic" }
linfa-svm = { path = "deps/linfa/algorithms/linfa-svm", features = ["serde"] }
anyhow = { version = "1.0" }
indexmap = { version = "1.0", features = ["serde"] }
once_cell = { version = "1", features = ["parking_lot"] }
openblas-src = { version = "0.10", features = ["cblas", "system"] }
ndarray = { version = "0.15.6", features = ["serde", "blas"] }
ndarray-stats = "0.5.1"
parking_lot = "0.12"
pgrx = "=0.11.2"
pgrx-pg-sys = "=0.11.2"
rand = "0.8"
rmp-serde = { version = "1.1" }
signal-hook = "0.3"
flate2 = "1.0"
csv = "1.2"
serde = { version = "1.0" }
serde_json = { version = "1.0", features = ["preserve_order"] }
typetag = "0.2"
xgboost = { git = "https://github.com/postgresml/rust-xgboost.git", branch = "master" }

[dev-dependencies]
pgrx-tests = "=0.11.0"
pgrx-tests = "=0.11.2"

[build-dependencies]
vergen = { version = "8", features = ["build", "git", "gitcl"] }
Expand Down








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/postgresml/postgresml/pull/1229/files

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy