From 46efaa8355becfcec0e8ec133f00478a9b5d2ee3 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 16 Nov 2021 01:14:40 -0500 Subject: [PATCH 1/2] fix syntax error in GitHub Action --- .github/workflows/test_import.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_import.yml b/.github/workflows/test_import.yml index 69eaf2464..ec6e818c6 100644 --- a/.github/workflows/test_import.yml +++ b/.github/workflows/test_import.yml @@ -10,9 +10,9 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 - with: - python-version: '3.x' - architecture: 'x64' + with: + python-version: '3.x' + architecture: 'x64' - run: python -m pip install . - run: python -c 'import dpdata' From ed8c59912e603454a765c382270016a55d436105 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 16 Nov 2021 01:20:13 -0500 Subject: [PATCH 2/2] downgrade python to 3.9 3.10 has not been prepared well --- .github/workflows/test_import.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_import.yml b/.github/workflows/test_import.yml index ec6e818c6..34bc23be7 100644 --- a/.github/workflows/test_import.yml +++ b/.github/workflows/test_import.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: - python-version: '3.x' + python-version: '3.9' architecture: 'x64' - run: python -m pip install . - run: python -c 'import dpdata'