File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed
.github/actions/install-deps Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ runs:
181
181
182
182
- name : Template version
183
183
shell : bash
184
- if : ${{ !startsWith(github.ref_name, 'v') }}
184
+ # if: ${{ !startsWith(github.ref_name, 'v') }}
185
185
run : |
186
186
git config --global --add safe.directory $GITHUB_WORKSPACE
187
187
node tools/perspective-scripts/version.mjs --nightly
Original file line number Diff line number Diff line change 33
33
" packages/perspective-cli" ,
34
34
" rust/perspective-js" ,
35
35
" rust/perspective-viewer" ,
36
+ " rust/perspective-python" ,
36
37
" examples/*" ,
37
- " docs" ,
38
- " python/perspective"
38
+ " docs"
39
39
],
40
40
"devDependencies" : {
41
41
"@finos/perspective" : " workspace:^" ,
Original file line number Diff line number Diff line change @@ -32,9 +32,7 @@ if (!!process.env.PSP_DEBUG) {
32
32
const python_version = process . env . PSP_PYTHON_VERSION || "3.12" ;
33
33
const is_pyodide = ! ! process . env . PSP_PYODIDE ;
34
34
35
- const version = pkg . version . replace ( / - ( r c | a l p h a | b e t a ) \. \d + / , ( x ) =>
36
- x . replace ( "-" , "" ) . replace ( "." , "" )
37
- ) ;
35
+ const version = pkg . version ;
38
36
39
37
fs . mkdirSync ( `./perspective_python-${ version } .data` , { recursive : true } ) ;
40
38
fs . copyFileSync ( "../../LICENSE.md" , "./LICENSE.md" ) ;
You can’t perform that action at this time.
0 commit comments