Skip to content

Commit

Permalink
fix(ci): ingestion - Restrict python to <=3.9.9 due to upstream looke…
Browse files Browse the repository at this point in the history
…r sdk issues (#3961)

Co-authored-by: Shirshanka Das <[email protected]>
  • Loading branch information
treff7es and shirshanka authored Jan 26, 2022
1 parent b6a340d commit cec541d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/metadata-ingestion-slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
python-version: ["3.9.9"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
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 @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.9"]
python-version: ["3.6", "3.9.9"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.6", "3.9"]
python-version: ["3.6", "3.9.9"]
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,8 @@ def get_long_description():
],
# Package info.
zip_safe=False,
python_requires=">=3.6",
# restrict python to <=3.9.9 due to https://github.com/looker-open-source/sdk-codegen/issues/944
python_requires=">=3.6, <=3.9.9",
package_dir={"": "src"},
packages=setuptools.find_namespace_packages(where="./src"),
package_data={
Expand Down

0 comments on commit cec541d

Please sign in to comment.