From 07be8bac7980d0fb341b9ff9a11f0716b44664c4 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 17:36:57 +0000 Subject: [PATCH 1/8] MAINT: update pip constraints and pre-commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.3.3 → v0.3.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.3.3...v0.3.4) - [github.com/ComPWA/policy: 0.3.2 → 0.3.3](https://github.com/ComPWA/policy/compare/0.3.2...0.3.3) - [github.com/streetsidesoftware/cspell-cli: v8.6.0 → v8.6.1](https://github.com/streetsidesoftware/cspell-cli/compare/v8.6.0...v8.6.1) - [github.com/ComPWA/mirrors-pyright: v1.1.354 → v1.1.356](https://github.com/ComPWA/mirrors-pyright/compare/v1.1.354...v1.1.356) --- .pre-commit-config.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3200f14..60473d8 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,7 +39,7 @@ repos: metadata.vscode - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.3 + rev: v0.3.4 hooks: - id: ruff args: [--fix] @@ -83,7 +83,7 @@ repos: - --in-place - repo: https://github.com/ComPWA/policy - rev: 0.3.2 + rev: 0.3.3 hooks: - id: check-dev-files args: @@ -93,7 +93,7 @@ repos: - --repo-title=Pawian Tools - repo: https://github.com/streetsidesoftware/cspell-cli - rev: v8.6.0 + rev: v8.6.1 hooks: - id: cspell @@ -119,6 +119,6 @@ repos: - python - repo: https://github.com/ComPWA/mirrors-pyright - rev: v1.1.354 + rev: v1.1.356 hooks: - id: pyright From 97a332f685208aee09da0e69f3b387dd7174e8d2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 17:37:18 +0000 Subject: [PATCH 2/8] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .github/workflows/cd.yml | 16 ++++++++++++++-- .vscode/settings.json | 28 +++++++++++++++++++++------- 2 files changed, 35 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 925b84d..54ae3bc 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -10,10 +10,22 @@ jobs: milestone: if: startsWith(github.ref, 'refs/tags') uses: ComPWA/actions/.github/workflows/close-milestone.yml@v1 + package-name: + uses: ComPWA/actions/.github/workflows/get-pypi-name.yml@v1 pypi: + environment: + name: PyPI + url: https://pypi.org/p/${{ needs.package-name.outputs.name }} if: startsWith(github.ref, 'refs/tags') - secrets: inherit - uses: ComPWA/actions/.github/workflows/publish-to-pypi.yml@v1 + name: Publish to PyPI + needs: + - package-name + permissions: + id-token: write + runs-on: ubuntu-22.04 + steps: + - uses: ComPWA/actions/build-pypi-distribution@v1 + - uses: pypa/gh-action-pypi-publish@release/v1 push: if: startsWith(github.ref, 'refs/tags') && !github.event.release.prerelease secrets: inherit diff --git a/.vscode/settings.json b/.vscode/settings.json index 702f3f3..f2b4ca6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,13 +1,16 @@ { "[git-commit]": { - "editor.rulers": [72], + "editor.rulers": [ + 72 + ], "rewrap.wrappingColumn": 72 }, "[ipynb]": { "editor.formatOnSave": false }, "[json]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.wordWrap": "on" }, "[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" @@ -20,12 +23,16 @@ "source.organizeImports": "explicit" }, "editor.defaultFormatter": "charliermarsh.ruff", - "editor.rulers": [88] + "editor.rulers": [ + 88 + ] }, "[yaml]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, - "coverage-gutters.coverageFileNames": ["coverage.xml"], + "coverage-gutters.coverageFileNames": [ + "coverage.xml" + ], "coverage-gutters.coverageReportFileName": "**/htmlcov/index.html", "coverage-gutters.showGutterCoverage": false, "coverage-gutters.showLineCoverage": true, @@ -33,11 +40,15 @@ "diffEditor.experimental.showMoves": true, "editor.formatOnSave": true, "git.rebaseWhenSync": true, - "github-actions.workflows.pinned.workflows": [".github/workflows/ci.yml"], + "github-actions.workflows.pinned.workflows": [ + ".github/workflows/ci.yml" + ], "gitlens.telemetry.enabled": false, "livePreview.defaultPreviewPath": "docs/_build/html", "multiDiffEditor.experimental.enabled": true, - "mypy-type-checker.args": ["--config-file=${workspaceFolder}/pyproject.toml"], + "mypy-type-checker.args": [ + "--config-file=${workspaceFolder}/pyproject.toml" + ], "mypy-type-checker.importStrategy": "fromEnvironment", "notebook.codeActionsOnSave": { "notebook.source.organizeImports": "explicit" @@ -48,7 +59,10 @@ "python.analysis.inlayHints.pytestParameters": true, "python.analysis.typeCheckingMode": "strict", "python.languageServer": "Pylance", - "python.testing.pytestArgs": ["--color=no", "--no-cov"], + "python.testing.pytestArgs": [ + "--color=no", + "--no-cov" + ], "python.testing.pytestEnabled": true, "python.testing.unittestEnabled": false, "redhat.telemetry.enabled": false, From 507d5b5381792278157f155b712d5478180e9f24 Mon Sep 17 00:00:00 2001 From: GitHub Date: Mon, 1 Apr 2024 17:38:15 +0000 Subject: [PATCH 3/8] MAINT: update pip constraints and pre-commit --- .constraints/py3.10.txt | 42 ++++++++++++++++++++--------------------- .constraints/py3.11.txt | 42 ++++++++++++++++++++--------------------- .constraints/py3.12.txt | 42 ++++++++++++++++++++--------------------- .constraints/py3.7.txt | 2 +- .constraints/py3.8.txt | 40 +++++++++++++++++++-------------------- .constraints/py3.9.txt | 42 ++++++++++++++++++++--------------------- .pre-commit-config.yaml | 2 +- 7 files changed, 106 insertions(+), 106 deletions(-) diff --git a/.constraints/py3.10.txt b/.constraints/py3.10.txt index 319c678..7a33d3c 100644 --- a/.constraints/py3.10.txt +++ b/.constraints/py3.10.txt @@ -27,7 +27,7 @@ colorama==0.4.6 comm==0.2.2 contourpy==1.2.0 coverage==7.4.4 -cramjam==2.8.2 +cramjam==2.8.3 cycler==0.12.1 debugpy==1.8.1 decorator==5.1.1 @@ -39,24 +39,24 @@ exceptiongroup==1.2.0 execnet==2.0.2 executing==2.0.1 fastjsonschema==2.19.1 -filelock==3.13.1 +filelock==3.13.3 fonttools==4.50.0 fqdn==1.5.1 -fsspec==2024.3.0 +fsspec==2024.3.1 gitdb==4.0.11 -gitpython==3.1.42 +gitpython==3.1.43 gprof2dot==2022.7.29 greenlet==3.0.3 h11==0.14.0 -httpcore==1.0.4 +httpcore==1.0.5 httpx==0.27.0 identify==2.5.35 idna==3.6 imagesize==1.4.1 -importlib-metadata==7.0.2 +importlib-metadata==7.1.0 iniconfig==2.0.0 -ipykernel==6.29.3 -ipython==8.22.2 +ipykernel==6.29.4 +ipython==8.23.0 ipywidgets==8.1.2 isoduration==20.11.0 isort==5.13.2 @@ -69,7 +69,7 @@ jsonschema-specifications==2023.12.1 jupyter-cache==1.0.0 jupyter-client==8.6.1 jupyter-core==5.7.2 -jupyter-events==0.9.1 +jupyter-events==0.10.0 jupyter-lsp==2.2.4 jupyter-server==2.13.0 jupyter-server-mathjax==0.2.6 @@ -78,7 +78,7 @@ jupyterlab==4.1.5 jupyterlab-code-formatter==2.2.1 jupyterlab-git==0.50.0 jupyterlab-lsp==5.1.0 -jupyterlab-myst==2.3.1 +jupyterlab-myst==2.3.2 jupyterlab-pygments==0.3.0 jupyterlab-server==2.25.4 jupyterlab-widgets==3.0.10 @@ -97,7 +97,7 @@ mypy-extensions==1.0.0 myst-nb==1.0.0 myst-parser==2.0.0 nbclient==0.6.8 -nbconvert==7.16.2 +nbconvert==7.16.3 nbdime==4.0.1 nbformat==5.10.3 nbmake==1.5.3 @@ -112,29 +112,29 @@ pandocfilters==1.5.1 parso==0.8.3 pathspec==0.12.1 pexpect==4.9.0 -pillow==10.2.0 +pillow==10.3.0 platformdirs==4.2.0 pluggy==1.4.0 -pre-commit==3.6.2 +pre-commit==3.7.0 prometheus-client==0.20.0 prompt-toolkit==3.0.43 psutil==5.9.8 ptyprocess==0.7.0 pure-eval==0.2.2 -pycparser==2.21 +pycparser==2.22 pydata-sphinx-theme==0.15.2 pygments==2.17.2 pyparsing==3.1.2 pyproject-api==1.6.1 pytest==8.1.1 -pytest-cov==4.1.0 +pytest-cov==5.0.0 pytest-profiling==1.7.0 pytest-xdist==3.5.0 python-dateutil==2.9.0.post0 python-json-logger==2.0.7 python-lsp-jsonrpc==1.1.2 python-lsp-ruff==2.2.0 -python-lsp-server==1.10.1 +python-lsp-server==1.11.0 pytoolconfig==1.3.1 pytz==2024.1 pyyaml==6.0.1 @@ -143,9 +143,9 @@ referencing==0.34.0 requests==2.31.0 rfc3339-validator==0.1.4 rfc3986-validator==0.1.1 -rope==1.12.0 +rope==1.13.0 rpds-py==0.18.0 -ruff==0.3.3 +ruff==0.3.5 send2trash==1.8.2 six==1.16.0 smmap==5.0.1 @@ -166,20 +166,20 @@ sphinxcontrib-htmlhelp==2.0.5 sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.7 sphinxcontrib-serializinghtml==1.1.10 -sqlalchemy==2.0.28 +sqlalchemy==2.0.29 stack-data==0.6.3 tabulate==0.9.0 terminado==0.18.1 tinycss2==1.2.1 tomli==2.0.1 tornado==6.4 -tox==4.14.1 +tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 typing-extensions==4.10.0 tzdata==2024.1 ujson==5.9.0 -uproot==5.3.1 +uproot==5.3.2 uri-template==1.3.0 urllib3==2.2.1 virtualenv==20.25.1 diff --git a/.constraints/py3.11.txt b/.constraints/py3.11.txt index 3f302cb..66d3986 100644 --- a/.constraints/py3.11.txt +++ b/.constraints/py3.11.txt @@ -27,7 +27,7 @@ colorama==0.4.6 comm==0.2.2 contourpy==1.2.0 coverage==7.4.4 -cramjam==2.8.2 +cramjam==2.8.3 cycler==0.12.1 debugpy==1.8.1 decorator==5.1.1 @@ -38,24 +38,24 @@ docutils==0.20.1 execnet==2.0.2 executing==2.0.1 fastjsonschema==2.19.1 -filelock==3.13.1 +filelock==3.13.3 fonttools==4.50.0 fqdn==1.5.1 -fsspec==2024.3.0 +fsspec==2024.3.1 gitdb==4.0.11 -gitpython==3.1.42 +gitpython==3.1.43 gprof2dot==2022.7.29 greenlet==3.0.3 h11==0.14.0 -httpcore==1.0.4 +httpcore==1.0.5 httpx==0.27.0 identify==2.5.35 idna==3.6 imagesize==1.4.1 -importlib-metadata==7.0.2 +importlib-metadata==7.1.0 iniconfig==2.0.0 -ipykernel==6.29.3 -ipython==8.22.2 +ipykernel==6.29.4 +ipython==8.23.0 ipywidgets==8.1.2 isoduration==20.11.0 isort==5.13.2 @@ -68,7 +68,7 @@ jsonschema-specifications==2023.12.1 jupyter-cache==1.0.0 jupyter-client==8.6.1 jupyter-core==5.7.2 -jupyter-events==0.9.1 +jupyter-events==0.10.0 jupyter-lsp==2.2.4 jupyter-server==2.13.0 jupyter-server-mathjax==0.2.6 @@ -77,7 +77,7 @@ jupyterlab==4.1.5 jupyterlab-code-formatter==2.2.1 jupyterlab-git==0.50.0 jupyterlab-lsp==5.1.0 -jupyterlab-myst==2.3.1 +jupyterlab-myst==2.3.2 jupyterlab-pygments==0.3.0 jupyterlab-server==2.25.4 jupyterlab-widgets==3.0.10 @@ -96,7 +96,7 @@ mypy-extensions==1.0.0 myst-nb==1.0.0 myst-parser==2.0.0 nbclient==0.6.8 -nbconvert==7.16.2 +nbconvert==7.16.3 nbdime==4.0.1 nbformat==5.10.3 nbmake==1.5.3 @@ -111,29 +111,29 @@ pandocfilters==1.5.1 parso==0.8.3 pathspec==0.12.1 pexpect==4.9.0 -pillow==10.2.0 +pillow==10.3.0 platformdirs==4.2.0 pluggy==1.4.0 -pre-commit==3.6.2 +pre-commit==3.7.0 prometheus-client==0.20.0 prompt-toolkit==3.0.43 psutil==5.9.8 ptyprocess==0.7.0 pure-eval==0.2.2 -pycparser==2.21 +pycparser==2.22 pydata-sphinx-theme==0.15.2 pygments==2.17.2 pyparsing==3.1.2 pyproject-api==1.6.1 pytest==8.1.1 -pytest-cov==4.1.0 +pytest-cov==5.0.0 pytest-profiling==1.7.0 pytest-xdist==3.5.0 python-dateutil==2.9.0.post0 python-json-logger==2.0.7 python-lsp-jsonrpc==1.1.2 python-lsp-ruff==2.2.0 -python-lsp-server==1.10.1 +python-lsp-server==1.11.0 pytoolconfig==1.3.1 pytz==2024.1 pyyaml==6.0.1 @@ -142,9 +142,9 @@ referencing==0.34.0 requests==2.31.0 rfc3339-validator==0.1.4 rfc3986-validator==0.1.1 -rope==1.12.0 +rope==1.13.0 rpds-py==0.18.0 -ruff==0.3.3 +ruff==0.3.5 send2trash==1.8.2 six==1.16.0 smmap==5.0.1 @@ -165,19 +165,19 @@ sphinxcontrib-htmlhelp==2.0.5 sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.7 sphinxcontrib-serializinghtml==1.1.10 -sqlalchemy==2.0.28 +sqlalchemy==2.0.29 stack-data==0.6.3 tabulate==0.9.0 terminado==0.18.1 tinycss2==1.2.1 tornado==6.4 -tox==4.14.1 +tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 typing-extensions==4.10.0 tzdata==2024.1 ujson==5.9.0 -uproot==5.3.1 +uproot==5.3.2 uri-template==1.3.0 urllib3==2.2.1 virtualenv==20.25.1 diff --git a/.constraints/py3.12.txt b/.constraints/py3.12.txt index 1a8fb4b..09df397 100644 --- a/.constraints/py3.12.txt +++ b/.constraints/py3.12.txt @@ -27,7 +27,7 @@ colorama==0.4.6 comm==0.2.2 contourpy==1.2.0 coverage==7.4.4 -cramjam==2.8.2 +cramjam==2.8.3 cycler==0.12.1 debugpy==1.8.1 decorator==5.1.1 @@ -38,24 +38,24 @@ docutils==0.20.1 execnet==2.0.2 executing==2.0.1 fastjsonschema==2.19.1 -filelock==3.13.1 +filelock==3.13.3 fonttools==4.50.0 fqdn==1.5.1 -fsspec==2024.3.0 +fsspec==2024.3.1 gitdb==4.0.11 -gitpython==3.1.42 +gitpython==3.1.43 gprof2dot==2022.7.29 greenlet==3.0.3 h11==0.14.0 -httpcore==1.0.4 +httpcore==1.0.5 httpx==0.27.0 identify==2.5.35 idna==3.6 imagesize==1.4.1 -importlib-metadata==7.0.2 +importlib-metadata==7.1.0 iniconfig==2.0.0 -ipykernel==6.29.3 -ipython==8.22.2 +ipykernel==6.29.4 +ipython==8.23.0 ipywidgets==8.1.2 isoduration==20.11.0 isort==5.13.2 @@ -68,7 +68,7 @@ jsonschema-specifications==2023.12.1 jupyter-cache==1.0.0 jupyter-client==8.6.1 jupyter-core==5.7.2 -jupyter-events==0.9.1 +jupyter-events==0.10.0 jupyter-lsp==2.2.4 jupyter-server==2.13.0 jupyter-server-mathjax==0.2.6 @@ -77,7 +77,7 @@ jupyterlab==4.1.5 jupyterlab-code-formatter==2.2.1 jupyterlab-git==0.50.0 jupyterlab-lsp==5.1.0 -jupyterlab-myst==2.3.1 +jupyterlab-myst==2.3.2 jupyterlab-pygments==0.3.0 jupyterlab-server==2.25.4 jupyterlab-widgets==3.0.10 @@ -96,7 +96,7 @@ mypy-extensions==1.0.0 myst-nb==1.0.0 myst-parser==2.0.0 nbclient==0.6.8 -nbconvert==7.16.2 +nbconvert==7.16.3 nbdime==4.0.1 nbformat==5.10.3 nbmake==1.5.3 @@ -111,29 +111,29 @@ pandocfilters==1.5.1 parso==0.8.3 pathspec==0.12.1 pexpect==4.9.0 -pillow==10.2.0 +pillow==10.3.0 platformdirs==4.2.0 pluggy==1.4.0 -pre-commit==3.6.2 +pre-commit==3.7.0 prometheus-client==0.20.0 prompt-toolkit==3.0.43 psutil==5.9.8 ptyprocess==0.7.0 pure-eval==0.2.2 -pycparser==2.21 +pycparser==2.22 pydata-sphinx-theme==0.15.2 pygments==2.17.2 pyparsing==3.1.2 pyproject-api==1.6.1 pytest==8.1.1 -pytest-cov==4.1.0 +pytest-cov==5.0.0 pytest-profiling==1.7.0 pytest-xdist==3.5.0 python-dateutil==2.9.0.post0 python-json-logger==2.0.7 python-lsp-jsonrpc==1.1.2 python-lsp-ruff==2.2.0 -python-lsp-server==1.10.1 +python-lsp-server==1.11.0 pytoolconfig==1.3.1 pytz==2024.1 pyyaml==6.0.1 @@ -142,9 +142,9 @@ referencing==0.34.0 requests==2.31.0 rfc3339-validator==0.1.4 rfc3986-validator==0.1.1 -rope==1.12.0 +rope==1.13.0 rpds-py==0.18.0 -ruff==0.3.3 +ruff==0.3.5 send2trash==1.8.2 six==1.16.0 smmap==5.0.1 @@ -165,19 +165,19 @@ sphinxcontrib-htmlhelp==2.0.5 sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.7 sphinxcontrib-serializinghtml==1.1.10 -sqlalchemy==2.0.28 +sqlalchemy==2.0.29 stack-data==0.6.3 tabulate==0.9.0 terminado==0.18.1 tinycss2==1.2.1 tornado==6.4 -tox==4.14.1 +tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 typing-extensions==4.10.0 tzdata==2024.1 ujson==5.9.0 -uproot==5.3.1 +uproot==5.3.2 uri-template==1.3.0 urllib3==2.2.1 virtualenv==20.25.1 diff --git a/.constraints/py3.7.txt b/.constraints/py3.7.txt index 62308a8..0b79991 100644 --- a/.constraints/py3.7.txt +++ b/.constraints/py3.7.txt @@ -43,7 +43,7 @@ filelock==3.12.2 fonttools==4.38.0 fqdn==1.5.1 gitdb==4.0.11 -gitpython==3.1.42 +gitpython==3.1.43 gprof2dot==2022.7.29 greenlet==3.0.3 identify==2.5.24 diff --git a/.constraints/py3.8.txt b/.constraints/py3.8.txt index 751b0a3..b5ae076 100644 --- a/.constraints/py3.8.txt +++ b/.constraints/py3.8.txt @@ -28,7 +28,7 @@ colorama==0.4.6 comm==0.2.2 contourpy==1.1.1 coverage==7.4.4 -cramjam==2.8.2 +cramjam==2.8.3 cycler==0.12.1 debugpy==1.8.1 decorator==5.1.1 @@ -40,24 +40,24 @@ exceptiongroup==1.2.0 execnet==2.0.2 executing==2.0.1 fastjsonschema==2.19.1 -filelock==3.13.1 +filelock==3.13.3 fonttools==4.50.0 fqdn==1.5.1 -fsspec==2024.3.0 +fsspec==2024.3.1 gitdb==4.0.11 -gitpython==3.1.42 +gitpython==3.1.43 gprof2dot==2022.7.29 greenlet==3.0.3 h11==0.14.0 -httpcore==1.0.4 +httpcore==1.0.5 httpx==0.27.0 identify==2.5.35 idna==3.6 imagesize==1.4.1 -importlib-metadata==7.0.2 -importlib-resources==6.3.1 +importlib-metadata==7.1.0 +importlib-resources==6.4.0 iniconfig==2.0.0 -ipykernel==6.29.3 +ipykernel==6.29.4 ipython==8.12.3 ipywidgets==8.1.2 isoduration==20.11.0 @@ -71,7 +71,7 @@ jsonschema-specifications==2023.12.1 jupyter-cache==0.6.1 jupyter-client==8.6.1 jupyter-core==5.7.2 -jupyter-events==0.9.1 +jupyter-events==0.10.0 jupyter-lsp==2.2.4 jupyter-server==2.13.0 jupyter-server-mathjax==0.2.6 @@ -80,7 +80,7 @@ jupyterlab==4.1.5 jupyterlab-code-formatter==2.2.1 jupyterlab-git==0.50.0 jupyterlab-lsp==5.1.0 -jupyterlab-myst==2.3.1 +jupyterlab-myst==2.3.2 jupyterlab-pygments==0.3.0 jupyterlab-server==2.25.4 jupyterlab-widgets==3.0.10 @@ -99,7 +99,7 @@ mypy-extensions==1.0.0 myst-nb==0.17.2 myst-parser==0.18.1 nbclient==0.6.8 -nbconvert==7.16.2 +nbconvert==7.16.3 nbdime==4.0.1 nbformat==5.10.3 nbmake==1.5.3 @@ -115,7 +115,7 @@ parso==0.8.3 pathspec==0.12.1 pexpect==4.9.0 pickleshare==0.7.5 -pillow==10.2.0 +pillow==10.3.0 pkgutil-resolve-name==1.3.10 platformdirs==4.2.0 pluggy==1.4.0 @@ -125,20 +125,20 @@ prompt-toolkit==3.0.43 psutil==5.9.8 ptyprocess==0.7.0 pure-eval==0.2.2 -pycparser==2.21 +pycparser==2.22 pydata-sphinx-theme==0.14.4 pygments==2.17.2 pyparsing==3.1.2 pyproject-api==1.6.1 pytest==8.1.1 -pytest-cov==4.1.0 +pytest-cov==5.0.0 pytest-profiling==1.7.0 pytest-xdist==3.5.0 python-dateutil==2.9.0.post0 python-json-logger==2.0.7 python-lsp-jsonrpc==1.1.2 python-lsp-ruff==2.2.0 -python-lsp-server==1.10.1 +python-lsp-server==1.11.0 pytoolconfig==1.3.1 pytz==2024.1 pyyaml==6.0.1 @@ -147,9 +147,9 @@ referencing==0.34.0 requests==2.31.0 rfc3339-validator==0.1.4 rfc3986-validator==0.1.1 -rope==1.12.0 +rope==1.13.0 rpds-py==0.18.0 -ruff==0.3.3 +ruff==0.3.5 send2trash==1.8.2 six==1.16.0 smmap==5.0.1 @@ -170,20 +170,20 @@ sphinxcontrib-htmlhelp==2.0.1 sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.3 sphinxcontrib-serializinghtml==1.1.5 -sqlalchemy==2.0.28 +sqlalchemy==2.0.29 stack-data==0.6.3 tabulate==0.9.0 terminado==0.18.1 tinycss2==1.2.1 tomli==2.0.1 tornado==6.4 -tox==4.14.1 +tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 typing-extensions==4.10.0 tzdata==2024.1 ujson==5.9.0 -uproot==5.3.1 +uproot==5.3.2 uri-template==1.3.0 urllib3==2.2.1 virtualenv==20.25.1 diff --git a/.constraints/py3.9.txt b/.constraints/py3.9.txt index 9420a71..ea38b28 100644 --- a/.constraints/py3.9.txt +++ b/.constraints/py3.9.txt @@ -27,7 +27,7 @@ colorama==0.4.6 comm==0.2.2 contourpy==1.2.0 coverage==7.4.4 -cramjam==2.8.2 +cramjam==2.8.3 cycler==0.12.1 debugpy==1.8.1 decorator==5.1.1 @@ -39,24 +39,24 @@ exceptiongroup==1.2.0 execnet==2.0.2 executing==2.0.1 fastjsonschema==2.19.1 -filelock==3.13.1 +filelock==3.13.3 fonttools==4.50.0 fqdn==1.5.1 -fsspec==2024.3.0 +fsspec==2024.3.1 gitdb==4.0.11 -gitpython==3.1.42 +gitpython==3.1.43 gprof2dot==2022.7.29 greenlet==3.0.3 h11==0.14.0 -httpcore==1.0.4 +httpcore==1.0.5 httpx==0.27.0 identify==2.5.35 idna==3.6 imagesize==1.4.1 -importlib-metadata==7.0.2 -importlib-resources==6.3.1 +importlib-metadata==7.1.0 +importlib-resources==6.4.0 iniconfig==2.0.0 -ipykernel==6.29.3 +ipykernel==6.29.4 ipython==8.18.1 ipywidgets==8.1.2 isoduration==20.11.0 @@ -70,7 +70,7 @@ jsonschema-specifications==2023.12.1 jupyter-cache==1.0.0 jupyter-client==8.6.1 jupyter-core==5.7.2 -jupyter-events==0.9.1 +jupyter-events==0.10.0 jupyter-lsp==2.2.4 jupyter-server==2.13.0 jupyter-server-mathjax==0.2.6 @@ -79,7 +79,7 @@ jupyterlab==4.1.5 jupyterlab-code-formatter==2.2.1 jupyterlab-git==0.50.0 jupyterlab-lsp==5.1.0 -jupyterlab-myst==2.3.1 +jupyterlab-myst==2.3.2 jupyterlab-pygments==0.3.0 jupyterlab-server==2.25.4 jupyterlab-widgets==3.0.10 @@ -98,7 +98,7 @@ mypy-extensions==1.0.0 myst-nb==1.0.0 myst-parser==2.0.0 nbclient==0.6.8 -nbconvert==7.16.2 +nbconvert==7.16.3 nbdime==4.0.1 nbformat==5.10.3 nbmake==1.5.3 @@ -113,29 +113,29 @@ pandocfilters==1.5.1 parso==0.8.3 pathspec==0.12.1 pexpect==4.9.0 -pillow==10.2.0 +pillow==10.3.0 platformdirs==4.2.0 pluggy==1.4.0 -pre-commit==3.6.2 +pre-commit==3.7.0 prometheus-client==0.20.0 prompt-toolkit==3.0.43 psutil==5.9.8 ptyprocess==0.7.0 pure-eval==0.2.2 -pycparser==2.21 +pycparser==2.22 pydata-sphinx-theme==0.15.2 pygments==2.17.2 pyparsing==3.1.2 pyproject-api==1.6.1 pytest==8.1.1 -pytest-cov==4.1.0 +pytest-cov==5.0.0 pytest-profiling==1.7.0 pytest-xdist==3.5.0 python-dateutil==2.9.0.post0 python-json-logger==2.0.7 python-lsp-jsonrpc==1.1.2 python-lsp-ruff==2.2.0 -python-lsp-server==1.10.1 +python-lsp-server==1.11.0 pytoolconfig==1.3.1 pytz==2024.1 pyyaml==6.0.1 @@ -144,9 +144,9 @@ referencing==0.34.0 requests==2.31.0 rfc3339-validator==0.1.4 rfc3986-validator==0.1.1 -rope==1.12.0 +rope==1.13.0 rpds-py==0.18.0 -ruff==0.3.3 +ruff==0.3.5 send2trash==1.8.2 six==1.16.0 smmap==5.0.1 @@ -167,20 +167,20 @@ sphinxcontrib-htmlhelp==2.0.5 sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.7 sphinxcontrib-serializinghtml==1.1.10 -sqlalchemy==2.0.28 +sqlalchemy==2.0.29 stack-data==0.6.3 tabulate==0.9.0 terminado==0.18.1 tinycss2==1.2.1 tomli==2.0.1 tornado==6.4 -tox==4.14.1 +tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 typing-extensions==4.10.0 tzdata==2024.1 ujson==5.9.0 -uproot==5.3.1 +uproot==5.3.2 uri-template==1.3.0 urllib3==2.2.1 virtualenv==20.25.1 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 60473d8..ca57f09 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -39,7 +39,7 @@ repos: metadata.vscode - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.4 + rev: v0.3.5 hooks: - id: ruff args: [--fix] From e59cf17505c399de9a5af6599fecdd6b4086adfd Mon Sep 17 00:00:00 2001 From: GitHub Date: Mon, 1 Apr 2024 17:40:08 +0000 Subject: [PATCH 4/8] MAINT: implement updates from pre-commit hooks --- .vscode/settings.json | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f2b4ca6..fe0792a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,8 +1,6 @@ { "[git-commit]": { - "editor.rulers": [ - 72 - ], + "editor.rulers": [72], "rewrap.wrappingColumn": 72 }, "[ipynb]": { @@ -23,16 +21,12 @@ "source.organizeImports": "explicit" }, "editor.defaultFormatter": "charliermarsh.ruff", - "editor.rulers": [ - 88 - ] + "editor.rulers": [88] }, "[yaml]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, - "coverage-gutters.coverageFileNames": [ - "coverage.xml" - ], + "coverage-gutters.coverageFileNames": ["coverage.xml"], "coverage-gutters.coverageReportFileName": "**/htmlcov/index.html", "coverage-gutters.showGutterCoverage": false, "coverage-gutters.showLineCoverage": true, @@ -40,15 +34,11 @@ "diffEditor.experimental.showMoves": true, "editor.formatOnSave": true, "git.rebaseWhenSync": true, - "github-actions.workflows.pinned.workflows": [ - ".github/workflows/ci.yml" - ], + "github-actions.workflows.pinned.workflows": [".github/workflows/ci.yml"], "gitlens.telemetry.enabled": false, "livePreview.defaultPreviewPath": "docs/_build/html", "multiDiffEditor.experimental.enabled": true, - "mypy-type-checker.args": [ - "--config-file=${workspaceFolder}/pyproject.toml" - ], + "mypy-type-checker.args": ["--config-file=${workspaceFolder}/pyproject.toml"], "mypy-type-checker.importStrategy": "fromEnvironment", "notebook.codeActionsOnSave": { "notebook.source.organizeImports": "explicit" @@ -59,10 +49,7 @@ "python.analysis.inlayHints.pytestParameters": true, "python.analysis.typeCheckingMode": "strict", "python.languageServer": "Pylance", - "python.testing.pytestArgs": [ - "--color=no", - "--no-cov" - ], + "python.testing.pytestArgs": ["--color=no", "--no-cov"], "python.testing.pytestEnabled": true, "python.testing.unittestEnabled": false, "redhat.telemetry.enabled": false, From dc6f9ffd6473a3dcdbd4cd4a76914c08ea75c203 Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Fri, 5 Apr 2024 22:10:47 +0200 Subject: [PATCH 5/8] MAINT: add PyPA to word list --- .cspell.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.cspell.json b/.cspell.json index 154e921..ac35863 100644 --- a/.cspell.json +++ b/.cspell.json @@ -114,6 +114,7 @@ "numpy", "pawian", "pydocstyle", + "PyPA", "pypi", "pytest", "PYTHONHASHSEED", From 64b0c50f68df3cedfc00e1ef1808ba474bda748c Mon Sep 17 00:00:00 2001 From: GitHub Date: Fri, 5 Apr 2024 20:12:17 +0000 Subject: [PATCH 6/8] MAINT: update pip constraints and pre-commit --- .constraints/py3.10.txt | 18 +++++++++--------- .constraints/py3.11.txt | 18 +++++++++--------- .constraints/py3.12.txt | 18 +++++++++--------- .constraints/py3.7.txt | 4 ++-- .constraints/py3.8.txt | 14 +++++++------- .constraints/py3.9.txt | 18 +++++++++--------- .pre-commit-config.yaml | 2 +- 7 files changed, 46 insertions(+), 46 deletions(-) diff --git a/.constraints/py3.10.txt b/.constraints/py3.10.txt index 7a33d3c..f2f6304 100644 --- a/.constraints/py3.10.txt +++ b/.constraints/py3.10.txt @@ -9,8 +9,8 @@ arrow==1.3.0 asttokens==2.4.1 async-lru==2.0.4 attrs==23.2.0 -awkward==2.6.2 -awkward-cpp==30 +awkward==2.6.3 +awkward-cpp==32 babel==2.14.0 beautifulsoup4==4.12.3 black==24.3.0 @@ -25,7 +25,7 @@ charset-normalizer==3.3.2 click==8.1.7 colorama==0.4.6 comm==0.2.2 -contourpy==1.2.0 +contourpy==1.2.1 coverage==7.4.4 cramjam==2.8.3 cycler==0.12.1 @@ -36,11 +36,11 @@ distlib==0.3.8 docstring-to-markdown==0.15 docutils==0.20.1 exceptiongroup==1.2.0 -execnet==2.0.2 +execnet==2.1.0 executing==2.0.1 fastjsonschema==2.19.1 filelock==3.13.3 -fonttools==4.50.0 +fonttools==4.51.0 fqdn==1.5.1 fsspec==2024.3.1 gitdb==4.0.11 @@ -87,7 +87,7 @@ livereload==2.6.3 lsprotocol==2023.0.1 markdown-it-py==3.0.0 markupsafe==2.1.5 -matplotlib==3.8.3 +matplotlib==3.8.4 matplotlib-inline==0.1.6 mdit-py-plugins==0.4.0 mdurl==0.1.2 @@ -99,7 +99,7 @@ myst-parser==2.0.0 nbclient==0.6.8 nbconvert==7.16.3 nbdime==4.0.1 -nbformat==5.10.3 +nbformat==5.10.4 nbmake==1.5.3 nest-asyncio==1.6.0 nodeenv==1.8.0 @@ -109,7 +109,7 @@ overrides==7.7.0 packaging==24.0 pandas==2.2.1 pandocfilters==1.5.1 -parso==0.8.3 +parso==0.8.4 pathspec==0.12.1 pexpect==4.9.0 pillow==10.3.0 @@ -176,7 +176,7 @@ tornado==6.4 tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 -typing-extensions==4.10.0 +typing-extensions==4.11.0 tzdata==2024.1 ujson==5.9.0 uproot==5.3.2 diff --git a/.constraints/py3.11.txt b/.constraints/py3.11.txt index 66d3986..05a510c 100644 --- a/.constraints/py3.11.txt +++ b/.constraints/py3.11.txt @@ -9,8 +9,8 @@ arrow==1.3.0 asttokens==2.4.1 async-lru==2.0.4 attrs==23.2.0 -awkward==2.6.2 -awkward-cpp==30 +awkward==2.6.3 +awkward-cpp==32 babel==2.14.0 beautifulsoup4==4.12.3 black==24.3.0 @@ -25,7 +25,7 @@ charset-normalizer==3.3.2 click==8.1.7 colorama==0.4.6 comm==0.2.2 -contourpy==1.2.0 +contourpy==1.2.1 coverage==7.4.4 cramjam==2.8.3 cycler==0.12.1 @@ -35,11 +35,11 @@ defusedxml==0.7.1 distlib==0.3.8 docstring-to-markdown==0.15 docutils==0.20.1 -execnet==2.0.2 +execnet==2.1.0 executing==2.0.1 fastjsonschema==2.19.1 filelock==3.13.3 -fonttools==4.50.0 +fonttools==4.51.0 fqdn==1.5.1 fsspec==2024.3.1 gitdb==4.0.11 @@ -86,7 +86,7 @@ livereload==2.6.3 lsprotocol==2023.0.1 markdown-it-py==3.0.0 markupsafe==2.1.5 -matplotlib==3.8.3 +matplotlib==3.8.4 matplotlib-inline==0.1.6 mdit-py-plugins==0.4.0 mdurl==0.1.2 @@ -98,7 +98,7 @@ myst-parser==2.0.0 nbclient==0.6.8 nbconvert==7.16.3 nbdime==4.0.1 -nbformat==5.10.3 +nbformat==5.10.4 nbmake==1.5.3 nest-asyncio==1.6.0 nodeenv==1.8.0 @@ -108,7 +108,7 @@ overrides==7.7.0 packaging==24.0 pandas==2.2.1 pandocfilters==1.5.1 -parso==0.8.3 +parso==0.8.4 pathspec==0.12.1 pexpect==4.9.0 pillow==10.3.0 @@ -174,7 +174,7 @@ tornado==6.4 tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 -typing-extensions==4.10.0 +typing-extensions==4.11.0 tzdata==2024.1 ujson==5.9.0 uproot==5.3.2 diff --git a/.constraints/py3.12.txt b/.constraints/py3.12.txt index 09df397..e0b08f8 100644 --- a/.constraints/py3.12.txt +++ b/.constraints/py3.12.txt @@ -9,8 +9,8 @@ arrow==1.3.0 asttokens==2.4.1 async-lru==2.0.4 attrs==23.2.0 -awkward==2.6.2 -awkward-cpp==30 +awkward==2.6.3 +awkward-cpp==32 babel==2.14.0 beautifulsoup4==4.12.3 black==24.3.0 @@ -25,7 +25,7 @@ charset-normalizer==3.3.2 click==8.1.7 colorama==0.4.6 comm==0.2.2 -contourpy==1.2.0 +contourpy==1.2.1 coverage==7.4.4 cramjam==2.8.3 cycler==0.12.1 @@ -35,11 +35,11 @@ defusedxml==0.7.1 distlib==0.3.8 docstring-to-markdown==0.15 docutils==0.20.1 -execnet==2.0.2 +execnet==2.1.0 executing==2.0.1 fastjsonschema==2.19.1 filelock==3.13.3 -fonttools==4.50.0 +fonttools==4.51.0 fqdn==1.5.1 fsspec==2024.3.1 gitdb==4.0.11 @@ -86,7 +86,7 @@ livereload==2.6.3 lsprotocol==2023.0.1 markdown-it-py==3.0.0 markupsafe==2.1.5 -matplotlib==3.8.3 +matplotlib==3.8.4 matplotlib-inline==0.1.6 mdit-py-plugins==0.4.0 mdurl==0.1.2 @@ -98,7 +98,7 @@ myst-parser==2.0.0 nbclient==0.6.8 nbconvert==7.16.3 nbdime==4.0.1 -nbformat==5.10.3 +nbformat==5.10.4 nbmake==1.5.3 nest-asyncio==1.6.0 nodeenv==1.8.0 @@ -108,7 +108,7 @@ overrides==7.7.0 packaging==24.0 pandas==2.2.1 pandocfilters==1.5.1 -parso==0.8.3 +parso==0.8.4 pathspec==0.12.1 pexpect==4.9.0 pillow==10.3.0 @@ -174,7 +174,7 @@ tornado==6.4 tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 -typing-extensions==4.10.0 +typing-extensions==4.11.0 tzdata==2024.1 ujson==5.9.0 uproot==5.3.2 diff --git a/.constraints/py3.7.txt b/.constraints/py3.7.txt index 0b79991..a1deedc 100644 --- a/.constraints/py3.7.txt +++ b/.constraints/py3.7.txt @@ -109,7 +109,7 @@ numpy==1.21.6 packaging==24.0 pandas==1.1.5 pandocfilters==1.5.1 -parso==0.8.3 +parso==0.8.4 pathspec==0.11.2 pexpect==4.9.0 pickleshare==0.7.5 @@ -123,7 +123,7 @@ prompt-toolkit==3.0.43 psutil==5.9.8 ptyprocess==0.7.0 pycparser==2.21 -pydantic==1.10.14 +pydantic==1.10.15 pydata-sphinx-theme==0.13.3 pygments==2.17.2 pyparsing==3.1.2 diff --git a/.constraints/py3.8.txt b/.constraints/py3.8.txt index b5ae076..0641ea9 100644 --- a/.constraints/py3.8.txt +++ b/.constraints/py3.8.txt @@ -9,8 +9,8 @@ arrow==1.3.0 asttokens==2.4.1 async-lru==2.0.4 attrs==23.2.0 -awkward==2.6.2 -awkward-cpp==30 +awkward==2.6.3 +awkward-cpp==32 babel==2.14.0 backcall==0.2.0 beautifulsoup4==4.12.3 @@ -37,11 +37,11 @@ distlib==0.3.8 docstring-to-markdown==0.15 docutils==0.19 exceptiongroup==1.2.0 -execnet==2.0.2 +execnet==2.1.0 executing==2.0.1 fastjsonschema==2.19.1 filelock==3.13.3 -fonttools==4.50.0 +fonttools==4.51.0 fqdn==1.5.1 fsspec==2024.3.1 gitdb==4.0.11 @@ -101,7 +101,7 @@ myst-parser==0.18.1 nbclient==0.6.8 nbconvert==7.16.3 nbdime==4.0.1 -nbformat==5.10.3 +nbformat==5.10.4 nbmake==1.5.3 nest-asyncio==1.6.0 nodeenv==1.8.0 @@ -111,7 +111,7 @@ overrides==7.7.0 packaging==24.0 pandas==2.0.3 pandocfilters==1.5.1 -parso==0.8.3 +parso==0.8.4 pathspec==0.12.1 pexpect==4.9.0 pickleshare==0.7.5 @@ -180,7 +180,7 @@ tornado==6.4 tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 -typing-extensions==4.10.0 +typing-extensions==4.11.0 tzdata==2024.1 ujson==5.9.0 uproot==5.3.2 diff --git a/.constraints/py3.9.txt b/.constraints/py3.9.txt index ea38b28..33eeef6 100644 --- a/.constraints/py3.9.txt +++ b/.constraints/py3.9.txt @@ -9,8 +9,8 @@ arrow==1.3.0 asttokens==2.4.1 async-lru==2.0.4 attrs==23.2.0 -awkward==2.6.2 -awkward-cpp==30 +awkward==2.6.3 +awkward-cpp==32 babel==2.14.0 beautifulsoup4==4.12.3 black==24.3.0 @@ -25,7 +25,7 @@ charset-normalizer==3.3.2 click==8.1.7 colorama==0.4.6 comm==0.2.2 -contourpy==1.2.0 +contourpy==1.2.1 coverage==7.4.4 cramjam==2.8.3 cycler==0.12.1 @@ -36,11 +36,11 @@ distlib==0.3.8 docstring-to-markdown==0.15 docutils==0.20.1 exceptiongroup==1.2.0 -execnet==2.0.2 +execnet==2.1.0 executing==2.0.1 fastjsonschema==2.19.1 filelock==3.13.3 -fonttools==4.50.0 +fonttools==4.51.0 fqdn==1.5.1 fsspec==2024.3.1 gitdb==4.0.11 @@ -88,7 +88,7 @@ livereload==2.6.3 lsprotocol==2023.0.1 markdown-it-py==3.0.0 markupsafe==2.1.5 -matplotlib==3.8.3 +matplotlib==3.8.4 matplotlib-inline==0.1.6 mdit-py-plugins==0.4.0 mdurl==0.1.2 @@ -100,7 +100,7 @@ myst-parser==2.0.0 nbclient==0.6.8 nbconvert==7.16.3 nbdime==4.0.1 -nbformat==5.10.3 +nbformat==5.10.4 nbmake==1.5.3 nest-asyncio==1.6.0 nodeenv==1.8.0 @@ -110,7 +110,7 @@ overrides==7.7.0 packaging==24.0 pandas==2.2.1 pandocfilters==1.5.1 -parso==0.8.3 +parso==0.8.4 pathspec==0.12.1 pexpect==4.9.0 pillow==10.3.0 @@ -177,7 +177,7 @@ tornado==6.4 tox==4.14.2 traitlets==5.14.2 types-python-dateutil==2.9.0.20240316 -typing-extensions==4.10.0 +typing-extensions==4.11.0 tzdata==2024.1 ujson==5.9.0 uproot==5.3.2 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ca57f09..377e7f5 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -119,6 +119,6 @@ repos: - python - repo: https://github.com/ComPWA/mirrors-pyright - rev: v1.1.356 + rev: v1.1.357 hooks: - id: pyright From eaf4e91798cbd7086cb2faa80ed3411afdc0c8ec Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Sat, 6 Apr 2024 11:33:13 +0200 Subject: [PATCH 7/8] MAINT: autoupdate pre-commit config --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 377e7f5..65dd107 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -83,7 +83,7 @@ repos: - --in-place - repo: https://github.com/ComPWA/policy - rev: 0.3.3 + rev: 0.3.4 hooks: - id: check-dev-files args: From 1a6a981eb8c9c649307597582d7ba65182073879 Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Sat, 6 Apr 2024 12:42:00 +0200 Subject: [PATCH 8/8] MAINT: remove JSON schema for GitHub Actions --- .vscode/settings.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index fe0792a..196ee56 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -62,8 +62,5 @@ ".constraints/*.txt": true, "tests/**/__init__.py": true }, - "telemetry.telemetryLevel": "off", - "yaml.schemas": { - "https://json.schemastore.org/github-workflow.json": "file:///home/redeboer/dev/redeboer/PawianTools/.github/workflows/requirements.yml" - } + "telemetry.telemetryLevel": "off" }