Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxiaoying committed May 9, 2024
1 parent ff8a694 commit d1ee243
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ jobs:
container: ubuntu:20.04
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
# python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.11"]
services:
# Label used to access the service container
postgres:
Expand Down Expand Up @@ -206,7 +207,7 @@ jobs:
- name: Install other dependent tools
run: |
python -m pip install poetry
poetry run python -m pip install --user six
cd connectorx-python && poetry run pip install six
if [ ! -f "$HOME/.cargo/bin/just" ]; then curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ~/.cargo/bin; fi
- name: Seed the database
Expand Down
3 changes: 1 addition & 2 deletions connectorx-python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,12 @@ pprof = {version = "0.5", features = ["flamegraph", "criterion", "protobuf"]}
rayon = "1"

[lib]
crate-type = ["cdylib", "rlib"]
crate-type = ["cdylib"]
name = "connectorx"

[features]
branch = ["connectorx/branch"]
default = ["extension", "fptr", "nbstr", "dsts", "srcs", "federation", "fed_exec"]
aaa = ["executable", "fptr", "nbstr", "dsts", "srcs", "federation", "fed_exec"]
dsts = ["connectorx/dst_arrow", "connectorx/dst_arrow2"]
executable = ["pyo3/auto-initialize"]
extension = ["pyo3/extension-module"]
Expand Down

0 comments on commit d1ee243

Please sign in to comment.