Skip to content

Commit

Permalink
upgrade to python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanzvonkov committed Nov 20, 2024
1 parent d2546e2 commit d4d737d
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildings-example-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- uses: google-github-actions/auth@v0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9"]
python-version: 3.9
steps:
- uses: actions/checkout@v2
- name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crop-mask-example-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- uses: google-github-actions/auth@v0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/crop-mask-example-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maize-example-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- uses: google-github-actions/auth@v0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maize-example-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion openmapflow/templates/github-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt
- uses: google-github-actions/auth@v0
Expand Down
2 changes: 1 addition & 1 deletion openmapflow/templates/github-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install dependencies
run: pip install -r requirements.txt

Expand Down
4 changes: 2 additions & 2 deletions tests/test_generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def test_create_github_actions_deploy(self):
{
"name": "Set up python",
"uses": "actions/setup-python@v2",
"with": {"python-version": 3.8},
"with": {"python-version": 3.9},
},
{
"name": "Install dependencies",
Expand Down Expand Up @@ -200,7 +200,7 @@ def test_create_github_actions_test(self):
{
"name": "Set up python",
"uses": "actions/setup-python@v2",
"with": {"python-version": 3.8},
"with": {"python-version": 3.9},
},
{
"name": "Install dependencies",
Expand Down

0 comments on commit d4d737d

Please sign in to comment.