Skip to content

Commit

Permalink
Updating default python version from 3.8 to 3.9 in CI, poetry and Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
madhavajay committed Jun 16, 2021
1 parent 5a90b92 commit 2dd7fcd
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/grid-tests.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: [3.8]
python-version: [3.9]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.8]
python-version: [3.9]

steps:
- uses: actions/checkout@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/syft-pr_tests.yml
Expand Up @@ -115,7 +115,7 @@ jobs:
max-parallel: 3
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: [3.8]
python-version: [3.9]
torch-version: [1.8.1]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: [3.8]
python-version: [3.9]
torch-version: [1.8.1]
os: [ubuntu-latest]
steps:
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: [3.8]
python-version: [3.9]
torch-version: [1.8.1]

steps:
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: [3.8]
python-version: [3.9]
torch-version: [1.8.1]

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/syft-security.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
max-parallel: 1
matrix:
os: [ubuntu-latest]
python-version: [3.8]
python-version: [3.9]
torch-version: [1.8.1]

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -70,6 +70,6 @@ jobs:
mv .snyk ${{ github.workspace }}
- name: Snyk security check
uses: snyk/actions/python-3.8@master
uses: snyk/actions/python-3.9@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
2 changes: 1 addition & 1 deletion packages/grid/apps/domain/Dockerfile
@@ -1,4 +1,4 @@
FROM python:3.8
FROM python:3.9

RUN mkdir /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/apps/domain/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/grid/apps/domain/pyproject.toml
Expand Up @@ -24,7 +24,7 @@ Flask-Executor = "^0.9.4"
Flask-Cors = "^3.0.10"
syft = { git = "https://github.com/OpenMined/PySyft", rev = "pygrid_demo" }
sympc = { git = "https://github.com/OpenMined/SyMPC", rev = "main" }
python-dp = "^1.0.2"
python-dp = "^1.1.0"
terrascript = "^0.9.0"
PyInquirer = "^1.0.3"
boto3 = "^1.14.51"
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/apps/network/Dockerfile
@@ -1,4 +1,4 @@
FROM python:3.8
FROM python:3.9

RUN mkdir /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/apps/worker/Dockerfile
@@ -1,4 +1,4 @@
FROM python:3.8
FROM python:3.9

RUN mkdir /app
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion packages/grid/apps/worker/pyproject.toml
Expand Up @@ -24,7 +24,7 @@ Flask-Executor = "^0.9.4"
Flask-Cors = "^3.0.10"
syft = { git = "https://github.com/OpenMined/PySyft", rev = "pygrid_demo" }
sympc = { git = "https://github.com/OpenMined/SyMPC", rev = "main" }
python-dp = "^1.0.2"
python-dp = "^1.1.0"
terrascript = "^0.9.0"
PyInquirer = "^1.0.3"
boto3 = "^1.14.51"
Expand Down

0 comments on commit 2dd7fcd

Please sign in to comment.