Skip to content

Commit

Permalink
Add FInAT CI
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjward committed Dec 4, 2024
1 parent 2cba81b commit c9a071e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@

name: FIAT CI

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand All @@ -33,7 +37,7 @@ jobs:
- name: Test with pytest
run: |
python -m pip install coveralls pytest pytest-cov pytest-xdist
DATA_REPO_GIT="" python -m pytest --cov=FIAT/ test/
DATA_REPO_GIT="" python -m pytest --cov=FIAT/ --cov=finat --cov=gem test/
- name: Coveralls
if: ${{ github.repository == 'FEniCS/fiat' && github.head_ref == '' && matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' }}
env:
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ build-backend = "setuptools.build_meta"
name = "fenics-fiat"
version = "2024.0.0"
dependencies = [
"numpy",
"numpy>=1.16",
"recursivenodes",
"scipy",
"symengine",
"sympy",
"fenics-ufl @ git+https://github.com/firedrakeproject/ufl.git",
]
requires-python = ">=3.10"
authors = [
{name = "Robert C. Kirby et al.", email = "[email protected]"},
{name = "Imperial College London and others", email = "[email protected]"},
]
description = "FInite element Automatic Tabulator"
readme = "README.rst"
Expand Down

0 comments on commit c9a071e

Please sign in to comment.