Skip to content

Update hello demo program for current conventions #4

Update hello demo program for current conventions

Update hello demo program for current conventions #4

Workflow file for this run

name: pymathics-hello (Windows)
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
os: [windows]
python-version: [ 3.9, 3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install wheel
pip install pytest
# Can remove after next Mathics-core release
python -m pip install -e git+https://github.com/Mathics3/mathics-core#egg=Mathics3[full]
- name: Install pymathics.hello
run: |
pip install -e .
- name: Test Mathics
run: |
make check