Skip to content

Commit

Permalink
fix(deps): Update dependency pyarrow to v13 (#19)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [pyarrow](https://arrow.apache.org/) ([source](https://togithub.com/apache/arrow)) | major | `==12.0.1` -> `==13.0.0` |

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi43OC4zIiwidXBkYXRlZEluVmVyIjoiMzYuNzguMyIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
  • Loading branch information
cq-bot authored Oct 27, 2023
1 parent dc93551 commit 361a318
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements.txt
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Check formatting
run: make fmt-check
6 changes: 4 additions & 2 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements.txt
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: make test
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ black==23.9.1
grpcio-tools==1.59.0
grpcio==1.59.0
protobuf==4.24.3
pyarrow==12.0.1
pyarrow==13.0.0
pytest==7.4.2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"grpcio >= 1.56.0",
"grpcio-tools >= 1.56.0",
"protobuf >= 4.23.4",
"pyarrow >= 12.0.1",
"pyarrow >= 13.0.0",
]
url = "https://github.com/cloudquery/plugin-pb-python"

Expand Down

0 comments on commit 361a318

Please sign in to comment.