Skip to content

Commit

Permalink
Bump version in pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgensd committed Sep 25, 2023
1 parent 69dd0e6 commit 6a17338
Showing 1 changed file with 11 additions and 35 deletions.
46 changes: 11 additions & 35 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,26 @@ requires = ["setuptools>=61.0.0", "wheel"]

[project]
name = "adios4dolfinx"
version = "0.4.0"
version = "0.7.0"
description = "Wrappers for reading/writing DOLFINx meshes/functions with ADIOS2"
authors = [{name = "Jørgen S. Dokken", email = "[email protected]"}]
license = {file = "LICENSE"}
authors = [{ name = "Jørgen S. Dokken", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = "README.md"


[project.optional-dependencies]
test = [
"pytest",
"coverage"
]
dev = [
"pdbpp",
"ipython",
"mypy",
"flake8",
]
docs = [
"jupyter-book"
]
all = [
"adios4dolfinx[test]",
"adios4dolfinx[dev]",
"adios4dolfinx[docs]"
]
test = ["pytest", "coverage"]
dev = ["pdbpp", "ipython", "mypy", "flake8"]
docs = ["jupyter-book"]
all = ["adios4dolfinx[test]", "adios4dolfinx[dev]", "adios4dolfinx[docs]"]

[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
testpaths = [
"tests"
]
addopts = ["--import-mode=importlib"]
testpaths = ["tests"]

[tool.mypy]
ignore_missing_imports = true
# Folders to exclude
exclude = [
"docs/",
"build/"
]
exclude = ["docs/", "build/"]
# Folder to check with mypy
files = [
"src",
"tests"
]
files = ["src", "tests"]

0 comments on commit 6a17338

Please sign in to comment.