Skip to content

Commit

Permalink
update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
wangxiaoying committed Nov 4, 2024
1 parent d8cf987 commit 2e6d539
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 65 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/import-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-10.15, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
container: quay.io/pypa/manylinux_2_28_x86_64
strategy:
matrix:
python-version: [[39, "3.9"], [310, "3.10"], [311, "3.11"], [312, "3.12"], [313, "3.13"]]
python-version: [[310, "3.10"], [311, "3.11"], [312, "3.12"], [313, "3.13"]]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
strategy:
matrix:
os: ["windows-latest", "macos-13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
include:
- os: "macos-13"
features: "--features integrated-auth-gssapi"
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
needs: [win-and-mac, linux]
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
os: [macos-13, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
Expand All @@ -311,7 +311,7 @@ jobs:
needs: [apple-arm]
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
os: [macos-latest]
steps:
- uses: actions/checkout@v4
Expand Down
115 changes: 61 additions & 54 deletions connectorx-python/poetry.lock

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

10 changes: 5 additions & 5 deletions connectorx-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ version = "0.3.4-alpha.2"
name = "connectorx" # Target file name of maturin build
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
requires-python = ">=3.10"

[tool.poetry.dependencies]
dask = {version = "^2021", optional = true, extras = ["dataframe"]}
modin = {version = ">=0.10", optional = true}
numpy = ">=1.26"
pandas = {version = "^2", optional = true}
polars = {version = ">=0.8", optional = true}
numpy = ">=2.1"
pandas = {version = ">=2", optional = true}
polars = {version = ">=1", optional = true}
pyarrow = {version = ">=4", optional = true}
python = ">=3.9,<3.14"
python = ">=3.10,<3.14"

[tool.poetry.extras]
all = ["dask", "pandas", "modin", "polars", "pyarrow"]
Expand Down

0 comments on commit 2e6d539

Please sign in to comment.