Skip to content

Commit

Permalink
Update node version for build (#700)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro authored Jan 24, 2024
1 parent 7836dda commit 9d6dc62
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ on:
schedule:
- cron: '0 18 * * SUN'

env:
PYTHON_VERSION: "3.9"
NODE_VERSION: "18"
MPLBACKEND: "Agg"
SETUPTOOLS_ENABLE_FEATURES: "legacy-editable"

jobs:
conda_build:
name: Build Conda Packages
Expand All @@ -21,10 +27,7 @@ jobs:
env:
CHANS_DEV: "-c pyviz/label/dev -c bokeh -c conda-forge -c nodefaults"
PKG_TEST_PYTHON: "--test-python=py39"
PYTHON_VERSION: "3.9"
MPLBACKEND: "Agg"
CONDA_UPLOAD_TOKEN: ${{ secrets.CONDA_UPLOAD_TOKEN }}
SETUPTOOLS_ENABLE_FEATURES: "legacy-editable"
steps:
- name: remove nodejs
run: |
Expand All @@ -35,13 +38,13 @@ jobs:
fetch-depth: "100"
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ env.PYTHON_VERSION }
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: ${{ env.NODE_VERSION }}
- name: Fetch unshallow
run: git fetch --prune --tags --unshallow -f
- name: Set output
Expand Down Expand Up @@ -104,13 +107,10 @@ jobs:
env:
CHANS_DEV: "-c pyviz/label/dev -c bokeh -c conda-forge"
PKG_TEST_PYTHON: "--test-python=py39"
PYTHON_VERSION: "3.9"
CHANS: "-c pyviz"
MPLBACKEND: "Agg"
PPU: ${{ secrets.PPU }}
PPP: ${{ secrets.PPP }}
PYPI: "https://upload.pypi.org/legacy/"
SETUPTOOLS_ENABLE_FEATURES: "legacy-editable"
steps:
- name: remove nodejs
run: |
Expand All @@ -121,13 +121,13 @@ jobs:
fetch-depth: "100"
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ env.PYTHON_VERSION }}
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: ${{ env.NODE_VERSION }}
- name: Fetch unshallow
run: git fetch --prune --tags --unshallow -f
- name: conda setup
Expand Down
4 changes: 2 additions & 2 deletions geoviews/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion geoviews/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holoviz/geoviews",
"version": "1.11.1-a.0",
"version": "1.11.1-a.1",
"description": "Simple, concise geographical visualization in Python",
"license": "BSD-3-Clause",
"repository": {
Expand Down

0 comments on commit 9d6dc62

Please sign in to comment.