Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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