Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,3 @@ jobs:
MPLBACKEND: Agg
run: |
find examples -name "*.py" -print0 | xargs -0 -n1 python
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# `dyson`: Dyson equation solvers for Green's function methods

[![CI](https://github.com/BoothGroup/dyson/workflows/CI/badge.svg)](https://github.com/BoothGroup/dyson/actions?query=workflow%3ACI+branch%3Amaster)
[![CI](https://github.com/BoothGroup/dyson/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/BoothGroup/dyson/actions/workflows/ci.yaml)
[![ruff](https://camo.githubusercontent.com/530951ce7a8a18468f6644ee7fd065389265c4b7176fce55f271b283be3a83c6/68747470733a2f2f696d672e736869656c64732e696f2f656e64706f696e743f75726c3d68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f636861726c6965726d617273682f727566662f6d61696e2f6173736574732f62616467652f76312e6a736f6e)](https://github.com/astral-sh/ruff)

The `dyson` package implements various Dyson equation solvers, including novel approaches that avoiding explicitly grid-resolved numerical procedures such as Fourier transforms and analytical continuation.
These include the moment-resolved block Lanczos methods for moments of the Green's function or self-energy.
Expand Down
23 changes: 1 addition & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ dev = [
"ruff>=0.10.0",
"mypy>=1.5.0",
"typing-extensions>=4.0.0",
"coverage[toml]>=5.5.0",
"pytest>=6.2.4",
"pytest-cov>=4.0.0",
"matplotlib>=3.4.0",
"sphinx>=7.0",
"sphinx-book-theme>=1.0",
Expand Down Expand Up @@ -115,25 +113,6 @@ ignore_missing_imports = true
module = "pyscf.*"
ignore_missing_imports = true

[tool.coverage.run]
branch = true
source = [
"dyson",
]

[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"def __str__",
"raise NotImplementedError",
"raise util.ModelNotImplemented",
"if __name__ == .__main__.:",
]

[tool.coverage.html]
directory = "cov_html"

[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
Expand All @@ -142,4 +121,4 @@ testpaths = [
"dyson",
"tests",
]
addopts = "--doctest-modules --cov=dyson"
addopts = "--doctest-modules"