Skip to content

Commit e247983

Browse files
committed
Fix validation steps on Windows #132
1 parent 2b5ce96 commit e247983

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ pre-commit run --all-files # run manually
9090

9191
```bash
9292
# Check PyTorch and CUDA
93-
pixi run python -c "import torch; print('PyTorch:', torch.__version__); print('CUDA available:', torch.cuda.is_available())"
93+
pixi run python -c 'import torch; print("PyTorch:", torch.__version__); print("CUDA available:", torch.cuda.is_available())'
9494

9595
# Check geospatial stack
96-
pixi run python -c "from osgeo import gdal; import rasterio, geopandas; print('Geospatial stack working')"
96+
pixi run python -c 'from osgeo import gdal; import rasterio, geopandas; print("Geospatial stack working")'
9797

9898
# Check FTW CLI import
99-
pixi run python -c "from ftw_tools.cli import ftw; print('FTW CLI ready')"
99+
pixi run python -c 'from ftw_tools.cli import ftw; print("FTW CLI ready")'
100100
```
101101

102102
### Conda/Mamba (Alternative)

0 commit comments

Comments
 (0)