Skip to content

Update README.md

Update README.md #36

Workflow file for this run

name: IWolfram (Windows)
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-2016
strategy:
matrix:
os: [windows]
python-version: ['3.12', '3.11', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
choco install llvm
set LLVM_DIR="C:\Program Files\LLVM"
pip install -e git://github.com/mmatera/mathics#egg=Mathics3
pip install ipywidgets
pip install ipykernel
pip install metakernel
pip install jupyter_kernel_test
pip install unittest2
pip install -e git://github.com/Mathics3/pymathics-asy#egg=pymathics-asy
dir c:\hostedtoolcache\windows\python
mathics.exe -e 'Print["Hola"]'
- name: Install IWolfram
run: |
python -m pip install -e .
- name: Test IWolfram
run: |
pip install pytest pexpect
make -j3 check