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

🎉 Python CDK: change minimum python version to 3.7.0 #3692

Merged
merged 9 commits into from
May 28, 2021
Prev Previous commit
Next Next commit
install pyrhon with pyenv
  • Loading branch information
yaroslav-dudar committed May 28, 2021
commit d0099cb33e427b6a4d76bf3d4752d114556f1997
6 changes: 4 additions & 2 deletions .github/workflows/publish-cdk-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
publish-cdk:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
- uses: "gabrielfalcao/pyenv-action@v5"
with:
python-version: '3.7'
default: 3.7.0
- uses: actions/setup-java@v1
with:
java-version: '14'
Expand All @@ -35,6 +35,8 @@ jobs:
echo "pypi_url=https://test.pypi.org/legacy/" >> $GITHUB_ENV
- name: Checkout Airbyte
uses: actions/checkout@v2
- name: Setup py-version
run: pyenv local 3.7.0 && pyenv global 3.7.0
- name: Build CDK Package
run: ./gradlew --no-daemon :airbyte-cdk:python:build
- name: Publish Python Package
Expand Down