Prepare python-package.yml for python 3.10

Python 3.10 is coming soon, and this will cause problems with the code as currently written. The python versions are written as floats and not strings, which will mean that 3.10 == 3.1, which is going to be very surprising.
This commit is contained in:
Anders Hovmöller
2020-11-10 13:57:09 +01:00
committed by GitHub
parent 6e6b7a3a65
commit 33c4d0afcb
+1 -1
View File
@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: ['3.5', '3.6', '3.7', '3.8']
steps:
- uses: actions/checkout@v2