Skip to content

Commit 3b1c172

Browse files
committed
Make CI and doc build work.
1 parent 93b7661 commit 3b1c172

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies = ["numpy>=1.21"]
1212
[project.optional-dependencies]
1313
docs = ["markdown", "pylit3", "pyyaml", "sphinx==5.0.2", "sphinx_rtd_theme"]
1414
lint = ["flake8", "pydocstyle", "isort"]
15-
optional = ["numba", "fenics-ufl>=2023.2.0,<2023.3.0"]
15+
optional = ["numba", "fenics-ufl@git+https://github.com/FEniCS/ufl.git@2023.2.0"]
1616
test = ["pytest", "sympy", "scipy", "matplotlib", "fenics-basix[optional]"]
1717
ci = ["mypy", "pytest-xdist", "fenics-basix[docs,lint,test,optional]"]
1818

Diff for: python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def build_extension(self, ext):
8787
extras_require={
8888
"docs": ["markdown", "pyyaml", "sphinx==5.0.2", "sphinx_rtd_theme"],
8989
"lint": ["flake8", "pydocstyle", "isort"],
90-
"optional": ["numba", "fenics-ufl>=2023.2.0,<2023.3.0"],
90+
"optional": ["numba", "fenics-ufl@git+https://github.com/FEniCS/ufl.git@2023.2.0"],
9191
"test": ["pytest", "sympy", "scipy", "matplotlib", "fenics-basix[optional]"],
9292
"ci": ["mypy", "pytest-xdist", "fenics-basix[docs,lint,test,optional]"],
9393
},

0 commit comments

Comments
 (0)