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

Commit0aad33a

Browse files
authored
update cargo pgrx to 0.8.2 to match app (#610)
1 parent3e7ef5d commit0aad33a

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

‎.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run:|
4444
curl https://sh.rustup.rs -sSf | sh -s -- -y
4545
source ~/.cargo/env
46-
cargo install cargo-pgrx --version "0.7.4"
46+
cargo install cargo-pgrx --version "0.8.2" --locked
4747
4848
if [[ ! -d ~/.pgrx ]]; then
4949
cargo pgrx init

‎.github/workflows/package-extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
with:
8585
working-directory:pgml-extension
8686
command:install
87-
args:cargo-pgrx --version "0.7.4"
87+
args:cargo-pgrx --version "0.8.2" --locked
8888
-name:pgrx init
8989
uses:postgresml/gh-actions-cargo@master
9090
with:

‎pgml-docs/docs/developer_guide/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Once there, you can initialize `pgrx` and get going:
7676

7777
####Pgx command line and environments
7878
```commandline
79-
cargo install cargo-pgrx --version "0.7.4" && \
79+
cargo install cargo-pgrx --version "0.8.2" --locked && \
8080
cargo pgrx init # This will take a few minutes
8181
```
8282

‎pgml-docs/docs/user_guides/setup/v2/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ sudo apt-get install postgresql
9898

9999
```bash
100100
export POSTGRES_VERSION=15
101-
cargo install cargo-pgrx --version "0.7.4" && \
101+
cargo install cargo-pgrx --version "0.8.2" --locked && \
102102
cargo pgrx init --pg${POSTGRES_VERSION} /usr/bin/pg_config && \
103103
cargo pgrx package
104104
```
@@ -108,7 +108,7 @@ sudo apt-get install postgresql
108108
```bash
109109
export POSTGRES_VERSION=15
110110
cp docker/Cargo.toml.no-python Cargo.toml && \
111-
cargo install cargo-pgrx --version "0.7.4" && \
111+
cargo install cargo-pgrx --version "0.8.2" --locked && \
112112
cargo pgrx init --pg${POSTGRES_VERSION} /usr/bin/pg_config && \
113113
cargo pgrx package
114114
```

‎pgml-extension/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN useradd postgresml -m -s /bin/bash -G sudo
3737
RUN echo'postgresml ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
3838
USER postgresml
3939
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
40-
RUN $HOME/.cargo/bin/cargo install cargo-pgrx --version"0.7.4"
40+
RUN $HOME/.cargo/bin/cargo install cargo-pgrx --version"0.8.2" --locked
4141
RUN $HOME/.cargo/bin/cargo pgrx init
4242
RUN curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg >/dev/null
4343
RUN sudo sh -c'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'

‎pgml-extension/docker/Cargo.toml.cuda

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ python = ["pyo3"]
1919
cuda = ["xgboost/cuda", "lightgbm/cuda"]
2020

2121
[dependencies]
22-
pgrx = "=0.7.4"
23-
pgrx-pg-sys = "=0.7.4"
22+
pgrx = "=0.8.2"
23+
pgrx-pg-sys = "=0.8.2"
2424
xgboost = { git="https://github.com/postgresml/rust-xgboost.git", branch = "master" }
2525
once_cell = "1"
2626
rand = "0.8"
@@ -49,7 +49,7 @@ flate2 = "1.0"
4949
csv = "1.1"
5050

5151
[dev-dependencies]
52-
pgrx-tests = "=0.7.4"
52+
pgrx-tests = "=0.8.2"
5353

5454
[profile.dev]
5555
panic = "unwind"

‎pgml-extension/docker/Cargo.toml.no-python

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ python = ["pyo3"]
1919
cuda = ["xgboost/cuda", "lightgbm/cuda"]
2020

2121
[dependencies]
22-
pgrx = "=0.7.4"
23-
pgrx-pg-sys = "=0.7.4"
22+
pgrx = "=0.8.2"
23+
pgrx-pg-sys = "=0.8.2"
2424
xgboost = { git="https://github.com/postgresml/rust-xgboost.git", branch = "master" }
2525
once_cell = "1"
2626
rand = "0.8"
@@ -49,7 +49,7 @@ flate2 = "1.0"
4949
csv = "1.1"
5050

5151
[dev-dependencies]
52-
pgrx-tests = "=0.7.4"
52+
pgrx-tests = "=0.8.2"
5353

5454
[profile.dev]
5555
panic = "unwind"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp