Skip to content

Commit aeb77a3

Browse files
authored
fix actions (#232)
1 parent 753bd96 commit aeb77a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-pypi.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
3232
test-deploy:
33-
if: github.ref_type == 'tag' && contains(github.ref_name, 'test')
33+
if: github.ref_type == 'tag' && contains(github.ref_name, 'test')
3434
needs: build
3535
environment:
3636
name: test-pypi
@@ -53,4 +53,4 @@ jobs:
5353
uses: pypa/gh-action-pypi-publish@master
5454
with:
5555
password: ${{ secrets.PYPI_API_TOKEN }}
56-
repository_url: https://pypi.org/legacy/
56+
repository_url: https://pypi.org/legacy/

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: [3.7, 3.8, 3.9, 3.10]
20+
python-version: [3.7, 3.8, 3.9, '3.10']
2121

2222
steps:
2323
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)