Remove reverse readline, test against NP1 and recover NumPy 1 dependency support #490
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Pages | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
workflow_dispatch: | |
# set permissions of GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
build: | |
uses: janosh/workflows/.github/workflows/nodejs-gh-pages.yml@main | |
with: | |
python-version: "3.11" | |
working-directory: site | |
pre-build: | | |
pip install '..[docs]' | |
python make_docs.py | |
install-cmd: npm install --force |