Commit 181ae3c 1 parent 897dcab commit 181ae3c Copy full SHA for 181ae3c
File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 47
47
with :
48
48
target : ${{ matrix.platform.target }}
49
49
args : --release --out dist --find-interpreter
50
- sccache : ' true '
50
+ sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
51
51
manylinux : auto
52
52
working-directory : ./utiles-pyo3
53
53
- name : Upload wheels
90
90
with :
91
91
target : ${{ matrix.platform.target }}
92
92
args : --release --out dist --find-interpreter
93
- sccache : ' true '
93
+ sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
94
94
manylinux : musllinux_1_2
95
95
working-directory : ./utiles-pyo3
96
96
- name : Upload wheels
@@ -121,7 +121,7 @@ jobs:
121
121
with :
122
122
target : ${{ matrix.platform.target }}
123
123
args : --release --out dist --find-interpreter
124
- sccache : ' true '
124
+ sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
125
125
working-directory : ./utiles-pyo3
126
126
- name : Upload wheels
127
127
uses : actions/upload-artifact@v4
@@ -164,7 +164,7 @@ jobs:
164
164
with :
165
165
target : ${{ matrix.platform.target }}
166
166
args : --release --out dist --find-interpreter
167
- sccache : ' true '
167
+ sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
168
168
working-directory : ./utiles-pyo3
169
169
- name : Upload wheels
170
170
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 1
1
//! Core util(e)ity functions for working with web mercator tiles, bounding boxes, et al
2
2
#![ deny( clippy:: missing_const_for_fn) ]
3
+
3
4
use std:: f64:: consts:: PI ;
4
5
use std:: num:: FpCategory ;
5
6
You can’t perform that action at this time.
0 commit comments