sgoodm / python-distance-rasters

Generate distance raster given set of geometry features
BSD 3-Clause "New" or "Revised" License
17 stars 4 forks source link

Add Python 3.10 to build / test workflows #19

Closed jacobwhall closed 2 years ago

jacobwhall commented 2 years ago

We should be able to add Python 3.10 to our test / build GitHub Actions soon. It looks like rasterio is still working on confirming 3.10 support. It isn't installing successfully yet in workflows on my fork; I'll give it some more time before troubleshooting.

Heads up that 3.10 needs to be in quotes ('3.10') in GitHub Action matrices:

matrix:
-  python-version: [3.6, 3.7, 3.8, 3.9]
+  python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
jacobwhall commented 2 years ago

Resolved with #20