-
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into pbrubeck/fix/sobolev-restricted
- Loading branch information
Showing
139 changed files
with
3,595 additions
and
4,055 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# This workflow will install tsfc and run its unit tests | ||
|
||
name: tsfc integration | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
tsfc-tests: | ||
name: Run TSFC tests | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
CC: gcc-10 | ||
CXX: g++-10 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install UFL | ||
run: | | ||
pip3 install . | ||
- name: Clone tsfc | ||
uses: actions/checkout@v3 | ||
with: | ||
path: ./tsfc | ||
repository: firedrakeproject/tsfc | ||
ref: master | ||
- name: Install tsfc | ||
run: | | ||
cd tsfc | ||
pip install -r requirements-ext.txt | ||
pip install git+https://github.com/coneoproject/COFFEE.git#egg=coffee | ||
pip install git+https://github.com/firedrakeproject/fiat.git#egg=fenics-fiat | ||
pip install git+https://github.com/FInAT/FInAT.git#egg=finat | ||
pip install git+https://github.com/firedrakeproject/loopy.git#egg=loopy | ||
pip install .[ci] | ||
pip install pytest | ||
- name: Run tsfc unit tests | ||
run: python3 -m pytest tsfc/tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[build-system] | ||
requires = ["setuptools>=58", "wheel"] | ||
requires = ["setuptools>=62", "wheel"] | ||
|
||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# future | ||
[metadata] | ||
name = fenics-ufl | ||
version = 2022.3.0.dev0 | ||
version = 2023.2.0.dev0 | ||
author = FEniCS Project Contributors | ||
email = [email protected] | ||
maintainer = FEniCS Project Steering Council | ||
|
@@ -26,20 +26,20 @@ classifiers = | |
Operating System :: MacOS :: MacOS X | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Topic :: Scientific/Engineering :: Mathematics | ||
Topic :: Software Development :: Libraries :: Python Modules | ||
|
||
[options] | ||
packages = find: | ||
include_package_data = True | ||
zip_safe = False | ||
python_requires = >= 3.7 | ||
python_requires = >= 3.8 | ||
setup_requires = | ||
setuptools >= 58 | ||
setuptools >= 62 | ||
wheel | ||
install_requires = | ||
numpy | ||
|
@@ -58,17 +58,15 @@ ci = | |
fenics-ufl[test] | ||
|
||
[flake8] | ||
ignore = E501, W504, | ||
E741 # ambiguous variable name | ||
builtins = ufl | ||
exclude = .git,__pycache__,doc/sphinx/source/conf.py,build,dist,test | ||
max-line-length = 120 | ||
exclude = doc/sphinx/source/conf.py,test | ||
|
||
[pydocstyle] | ||
# Work on removing these ignores | ||
ignore = D100,D101,D102,D103,D104,D105,D107, | ||
D200,D202, | ||
D203, # this error should be disabled | ||
# the skipping of D203 should be removed | ||
D203, | ||
D204,D205,D208,D209,D210,D212,D213, | ||
D300,D301, | ||
D400,D401,D402,D404,D415,D416 | ||
E741 # Variable names l, O, I, ... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.