Skip to content

Commit

Permalink
Restrict python to <=3.9.9 due to looker-open-source/sdk-codegen#944
Browse files Browse the repository at this point in the history
…causes build failure
  • Loading branch information
treff7es committed Jan 24, 2022
1 parent f2e2a4d commit f93a1ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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
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 f93a1ca

Please sign in to comment.