Browse Source

Skip building on python 3.5 on windows due to path encoding issues.

Jelmer Vernooij 4 năm trước cách đây
mục cha
commit
ebc04a4ae6
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      .github/workflows/pythonpublish.yml

+ 4 - 0
.github/workflows/pythonpublish.yml

@@ -18,6 +18,10 @@ jobs:
         include:
           - os: ubuntu-latest
             python-version: '3.x'
+          # path encoding
+        exclude:
+          - os: windows-latest
+            python-version: 3.5
 
     steps:
     - uses: actions/checkout@v2