Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: arduino/arduino-serial-plotter-webapp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.2.0
Choose a base ref
...
head repository: arduino/arduino-serial-plotter-webapp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 10, 2022

  1. Use node-gyp compatible version of Python in runner for test workflow

    The node-gyp dependency of this project uses a Python script.
    
    Previously, the test GitHub Actions workflow was not configured to install a specific version of Python, so whichever
    version of Python 3.x that was pre-installed on the GitHub Actions runner machine was used.
    
    The documentation for the node-gyp@7.1.2 version used by this project indicates the newest supported Python version is
    3.8. Clearly newer versions did work because the workflow has been running with Python 3.10. However, the macos-latest
    runner was updated to using Python 3.11 and the script now fails when `npm install` is ran in the project:
    
    ValueError: invalid mode: 'rU' while trying to load binding.
    
    The solution is to install a specific version of Python. It seems safest to use the newest version explicitly stated as
    supported by the node-gyp@7.1.2 documentation, so Python 3.8 is installed.
    per1234 authored Nov 10, 2022
    Configuration menu
    Copy the full SHA
    dcec573 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2022

  1. Merge pull request #19 from per1234/pin-test-env-python

    Use node-gyp compatible version of Python in runner for test workflow
    per1234 authored Nov 22, 2022
    Configuration menu
    Copy the full SHA
    22c6952 View commit details
    Browse the repository at this point in the history
Loading