diff --git a/.github/workflows/check-quickstart.yml b/.github/workflows/check-quickstart.yml index be2851bc3a144..d7d4c5fb1240e 100644 --- a/.github/workflows/check-quickstart.yml +++ b/.github/workflows/check-quickstart.yml @@ -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 diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a8a66b628f3d7..a1b25565aa876 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -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 diff --git a/.github/workflows/metadata-ingestion.yml b/.github/workflows/metadata-ingestion.yml index a9afc6e597aa3..7d9cd2ecb6e83 100644 --- a/.github/workflows/metadata-ingestion.yml +++ b/.github/workflows/metadata-ingestion.yml @@ -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 @@ -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: diff --git a/.github/workflows/metadata-model.yml b/.github/workflows/metadata-model.yml index ad3a774462ac4..8ecb80ad822f0 100644 --- a/.github/workflows/metadata-model.yml +++ b/.github/workflows/metadata-model.yml @@ -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 diff --git a/docker/datahub-ingestion/base.Dockerfile b/docker/datahub-ingestion/base.Dockerfile index 25b3d08d60dd9..1f6e5d01fac33 100644 --- a/docker/datahub-ingestion/base.Dockerfile +++ b/docker/datahub-ingestion/base.Dockerfile @@ -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 @@ -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 \ No newline at end of file + pip uninstall -y acryl-datahub diff --git a/metadata-ingestion/.gitignore b/metadata-ingestion/.gitignore index cdadbc6dc2aa5..96c3d68aa8dca 100644 --- a/metadata-ingestion/.gitignore +++ b/metadata-ingestion/.gitignore @@ -2,6 +2,7 @@ .vscode/ output pvenv36/ +/venv*/ bq_credentials.json /tmp @@ -136,4 +137,4 @@ dmypy.json .pyre/ # Generated classes -src/datahub/metadata/ \ No newline at end of file +src/datahub/metadata/