Skip to content

Commit

Permalink
Merge branch 'main' into emmarothwell1/restricted_function_space
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs authored Feb 1, 2024
2 parents 0c2bddc + 929a679 commit 77c8f3d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Build sdist and wheel
run: python -m build .

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/*

Expand All @@ -59,7 +59,7 @@ jobs:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
make html
- name: Upload documentation artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: doc-${{ matrix.os }}-${{ matrix.python-version }}
path: doc/sphinx/build/html/
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ build-backend = "setuptools.build_meta"
[project]
name = "fenics-ufl"
version = "2023.3.0.dev0"
authors = [{email="[email protected]"}, {name="FEniCS Project"}]
maintainers = [{email="fenics-dev@googlegroups.com"}, {name="FEniCS Project Steering Council"}]
authors = [{name="UFL contributors"}]
maintainers = [{email="fenics-steering-council@googlegroups.com"}, {name="FEniCS Steering Council"}]
description = "Unified Form Language"
readme = "README.rst"
license = {file = "COPYING.lesser"}
Expand Down
2 changes: 1 addition & 1 deletion ufl/operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ def exterior_derivative(f):
except Exception:
raise ValueError(f"Unable to determine element from {f}")

gdim = element.cell().geometric_dimension()
gdim = element.cell.geometric_dimension()
space = element.sobolev_space

if space == sobolevspace.L2:
Expand Down

0 comments on commit 77c8f3d

Please sign in to comment.