Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxiaoying committed Mar 29, 2024
1 parent 42eb003 commit 9a94dfb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ jobs:

- name: Install tools
run: |
yum install -y epel-release mysql-devel postgresql-devel freetds-devel krb5-libs clang-devel pkg-config
yum install -y epel-release
yum install -y mysql-devel postgresql-devel freetds-devel krb5-libs clang-devel
- name: Setup project
run: |
Expand Down Expand Up @@ -95,7 +96,8 @@ jobs:

# - name: Install tools
# run: |
# yum install -y epel-release mysql-devel postgresql-devel freetds-devel krb5-libs clang-devel pkg-config
# yum install -y epel-release
# yum install -y mysql-devel postgresql-devel freetds-devel krb5-libs clang-devel

# - name: Setup project
# run: |
Expand Down
2 changes: 1 addition & 1 deletion connectorx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ hex = {version = "0.4", optional = true}
native-tls = {version = "0.2", optional = true}
ndarray = {version = "0.15", optional = true}
num-traits = {version = "0.2", optional = true}
openssl = {version = "0.10", optional = true}
openssl = {version = "0.10", optional = true, features = ["vendored"]}
oracle = {version = "0.5", optional = true}
polars = {version = "0.32", optional = true, features=["dtype-u8", "dtype-u16"]}
postgres = {version = "0.19", features = ["with-chrono-0_4", "with-uuid-0_8", "with-serde_json-1"], optional = true}
Expand Down

0 comments on commit 9a94dfb

Please sign in to comment.