Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update clickhouse connect to 0.8.14 #6177

Merged
merged 1 commit into from
Jan 24, 2025
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
2 changes: 1 addition & 1 deletion .github/actions/update-viablestrict/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ runs:
- name: Install Python Packages
shell: bash
run: |
pip install clickhouse-connect==0.7.16 boto3==1.19.12
pip install clickhouse-connect==0.8.14 boto3==1.19.12

- name: Get latest viable commit
id: get-latest-commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/revert-tracker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- id: generate-reverts-file
run: |
cd test-infra/tools
python3 -m pip install clickhouse-connect==0.7.16
python3 -m pip install clickhouse-connect==0.8.14
python3 -m torchci.reverts
echo "revert_file=$(cat revert_file_name.txt)" >> "${GITHUB_OUTPUT}"
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
echo ::group::setup Python environment
python -m venv .venv/
source .venv/bin/activate
pip install pip==23.0.1 pytest==7.2.0 jsonschema==4.17.3 clickhouse-connect==0.7.16
pip install pip==23.0.1 pytest==7.2.0 jsonschema==4.17.3 clickhouse-connect==0.8.14
echo ::endgroup::

# Test tools
Expand All @@ -53,7 +53,7 @@ jobs:
source .venv/bin/activate
pip install pip==23.0.1 pytest==7.2.0 \
jsonschema==4.17.3 numpy==1.24.1 pandas==2.1.4 boto3==1.19.12 \
clickhouse-connect==0.7.16
clickhouse-connect==0.8.14
echo ::endgroup::

# Test tools
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-test-times.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python-version: '3.10'

- name: Install Dependencies
run: python -m pip install boto3==1.19.12 clickhouse-connect==0.7.16 requests==2.26.0
run: python -m pip install boto3==1.19.12 clickhouse-connect==0.8.14 requests==2.26.0

- name: Update test times
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_test_file_ratings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install Dependencies
run: |
pip3 install --upgrade pip
pip3 install boto3==1.19.12 clickhouse-connect==0.7.16
pip3 install boto3==1.19.12 clickhouse-connect==0.8.14
cd test-infra/tools/torchci
pip3 install -e .

Expand Down
2 changes: 1 addition & 1 deletion aws/lambda/clickhouse-replicator-dynamo/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
clickhouse-connect==0.7.16
clickhouse-connect==0.8.14
pytest==7.4.0
2 changes: 1 addition & 1 deletion aws/lambda/clickhouse-replicator-s3/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
clickhouse-connect==0.7.16
clickhouse-connect==0.8.14
pytest==7.4.0
2 changes: 1 addition & 1 deletion aws/lambda/servicelab-ingestor/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
boto3==1.28.24
clickhouse-connect==0.7.16
clickhouse-connect==0.8.14
pytest==7.4.0
2 changes: 1 addition & 1 deletion tools/torchci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ setuptools==70.0.0
requests
boto3==1.19.12
pytest==7.2.0
clickhouse-connect==0.7.16
clickhouse-connect==0.8.14
Loading