Skip to content

Commit

Permalink
Update to version 0.10.dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
jhale committed Oct 14, 2024
1 parent 3b0165e commit 6fb7aa9
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ on:
jobs:
build-and-test:
runs-on: ubuntu-latest
container: ghcr.io/fenics/dolfinx/dolfinx:v0.9.0
container: ghcr.io/fenics/dolfinx/dolfinx:nightly
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install FEniCSx-Shells
run: |
python3 -m pip install --no-build-isolation --check-build-dependencies '.[ci]'
- name: ruff checks
run: |
ruff check .
ruff format --check .
- name: Install FEniCSx-Shells
run: |
python3 -m pip install --no-build-isolation --check-build-dependencies .
- name: Build documentation
run: |
Expand Down
5 changes: 2 additions & 3 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
jupytext_process.process()

project = "FEniCSx-Shells"
copyright = "2022, FEniCSx-Shells Authors"
copyright = "2022-2024, FEniCSx-Shells Authors"
author = "FEniCSx-Shells Authors"
release = "0.5.0.dev0"
release = "0.10.0.dev0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down Expand Up @@ -55,5 +55,4 @@
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = "alabaster"
html_static_path = ["_static"]
2 changes: 1 addition & 1 deletion launch-container.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
CONTAINER_ENGINE="docker"
${CONTAINER_ENGINE} run -ti -v $(pwd):/shared -w /shared dolfinx/dolfinx:v0.7.2
${CONTAINER_ENGINE} run -ti -v $(pwd):/shared -w /shared dolfinx/dolfinx:v0.9.0
16 changes: 14 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "fenicsx-shells"
version = "0.8.0.dev0"
version = "0.10.0.dev0"
description = "FEniCSx-Shells"
readme = "README.md"
requires-python = ">=3.9.0"
Expand All @@ -14,7 +14,19 @@ authors = [
{ name = "Jack S. Hale" },
]
dependencies = [
"fenics-dolfinx>=0.8.0.dev0,<0.9.0",
"fenics-dolfinx>=0.10.0.dev0,<0.11.0",
]

[project.optional-dependencies]
doc = ["myst_parser", "sphinx_rtd_theme", "sphinx"]
demo = []
test = ["pytest"]
lint = ["ruff"]
ci = [
"dolfinx-external-operator[doc]",
"dolfinx-external-operator[demo]",
"dolfinx-external-operator[test]",
"dolfinx-external-operator[lint]",
]

[tool.ruff]
Expand Down

0 comments on commit 6fb7aa9

Please sign in to comment.