Skip to content

Commit

Permalink
Getting CI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Dec 15, 2024
1 parent 2e1c7c0 commit e4a51e2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.12']
python-version: ['3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -24,6 +24,7 @@ jobs:
- name: Install Mathics3 with full dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools "mpmath<1.4,>=1.1.0"
# We can comment out after next Mathics-Scanner release
# python -m pip install -e git+https://github.com/Mathics3/mathics-scanner#egg=Mathics-Scanner[full]
git clone https://github.com/Mathics3/mathics-scanner.git
Expand All @@ -32,8 +33,10 @@ jobs:
cd ..
git clone https://github.com/Mathics3/mathics-core.git
cd mathics-core/
remake -x develop
remake -x install
cd ..
pip install -e .[dev]
# python -m pip install Mathics-Scanner[full]
- name: Test Mathics
Expand Down

0 comments on commit e4a51e2

Please sign in to comment.