Skip to content

Commit 24ff734

Browse files
authored
fix syntax error in GitHub Action (#220)
* fix syntax error in GitHub Action * downgrade python to 3.9 3.10 has not been prepared well
1 parent 863b0a7 commit 24ff734

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test_import.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-python@v2
13-
with:
14-
python-version: '3.x'
15-
architecture: 'x64'
13+
with:
14+
python-version: '3.9'
15+
architecture: 'x64'
1616
- run: python -m pip install .
1717
- run: python -c 'import dpdata'
1818

0 commit comments

Comments
 (0)