Skip to content

Commit

Permalink
ci(ingest): test with python 3.10 (datahub-project#5863)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Sep 8, 2022
1 parent fb94a93 commit 878344d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-quickstart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/setup-python@v2
with:
python-version: "3.9.9"
python-version: "3.10"
- name: Install acryl-datahub
run: |
pip install --upgrade acryl-datahub
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
java-version: 1.8
- uses: actions/setup-python@v2
with:
python-version: 3.9.9
python-version: "3.10"
- name: Install Python dependencies
run: ./metadata-ingestion/scripts/install_deps.sh
- name: Build Docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/metadata-ingestion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
DATAHUB_TELEMETRY_ENABLED: false
strategy:
matrix:
python-version: ["3.7", "3.9"]
python-version: ["3.7", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -54,7 +54,7 @@ jobs:
DATAHUB_TELEMETRY_ENABLED: false
strategy:
matrix:
python-version: ["3.7", "3.9"]
python-version: ["3.7", "3.10"]
command: ["installAirflow1", "testIntegration", "testIntegrationBatch1", "testSlowIntegration"]
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/metadata-model.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9.9"
python-version: "3.10"
- name: Install dependencies
run: ./metadata-ingestion/scripts/install_deps.sh
- name: Run model generation
Expand Down
4 changes: 2 additions & 2 deletions docker/datahub-ingestion/base.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9.9 as base
FROM python:3.10.7 as base

ENV DOCKERIZE_VERSION v0.6.1
ENV LIBRDKAFKA_VERSION=1.6.2
Expand Down Expand Up @@ -58,4 +58,4 @@ RUN if [ $(arch) = "x86_64" ]; then \
COPY ./base-requirements.txt requirements.txt

RUN pip install -r requirements.txt && \
pip uninstall -y acryl-datahub
pip uninstall -y acryl-datahub
3 changes: 2 additions & 1 deletion metadata-ingestion/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.vscode/
output
pvenv36/
/venv*/
bq_credentials.json
/tmp

Expand Down Expand Up @@ -136,4 +137,4 @@ dmypy.json
.pyre/

# Generated classes
src/datahub/metadata/
src/datahub/metadata/

0 comments on commit 878344d

Please sign in to comment.