Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
montanalow merged 1 commit intomasterfrommontana/pgrxup
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes fromall 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
View file
Open in desktop
Original file line numberDiff line numberDiff 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
View file
Open in desktop
Original file line numberDiff line numberDiff 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 deletionpgml-cms/docs/resources/developer-docs/contributing.md
View file
Open in desktop
Original file line numberDiff line numberDiff 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 deletionspgml-cms/docs/resources/developer-docs/installation.md
View file
Open in desktop
Original file line numberDiff line numberDiff 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 framework `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 DownExpand Up@@ -288,7 +288,7 @@ We use the `pgrx` Postgres Rust extension framework, 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
View file
Open in desktop
Original file line numberDiff line numberDiff 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 deletionpgml-dashboard/Cargo.lock
View file
Open in desktop

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

28 changes: 15 additions & 13 deletionspgml-extension/Cargo.lock
View file
Open in desktop

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

38 changes: 19 additions & 19 deletionspgml-extension/Cargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff 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

[8]ページ先頭

©2009-2025 Movatter.jp