Rats is a collection of tools to help researchers define and run experiments. It is designed to be a modular and extensible framework currently supporting building and running pipelines, integrating configs and services.
MIT License
13
stars
4
forks
source link
:arrow_up: dep-bump(deps): Bump the package-dependencies group across 1 directory with 9 updates #263
Breaking change: support for Python 3.7 dropped totally (#371).
It was already dropped, but now it's official.
Breaking change (but for nobody): Invalid syntax removed (#377).
Removed syntax rules that were never implemented in graphviz's own parser.
Attribute sorting removed (#361).
Pydot will preserve the original order of attributes as defined.
Breaking change: Remove .create_attribute_methods() from classes (#318).
Setters and getters for attributes are now added to class definitions
by calls to pydot.core.__generate_attribute_methods() immediately
after the class is defined, for better compatibility with type-checking
and introspection.
Changed:
Internal storage and lookup of identifiers (names) improved (#363).
Pydot now always stores values as they were originally input, and only performs
quoting on output.
Previously, when a graph element was created with a name that contained a space
or otherwise required quoting, the quotes would be added immediately, making it
more difficult to retrieve the element using the .get_*() lookup methods.
If a name requiring quotes was later set using .set_name(), no quotes would be
added, causing the graph definition to become invalid.
(Thanks to @tusharsadhwani for initially pointing out the name-quoting issues.)
Quoting for attribute values fixed (#320).
Attribute values containing comma-separated strings will now be quoted correctly.
Added:
Keywords can now be used as names or attribute values (#363).
Graphviz keywords like "graph" or "subgraph" will now be properly quoted
when used as attribute values or as names, where appropriate.
Add standard Python logging, using the logger name pydot. For
details, see the new section on Troubleshooting in README.md.
Exclusion patterns can now be multi-line, thanks to Daniel Diniz <pull 1807_>. This enables many interesting exclusion use-cases, including those
requested in issues 118 <issue 118_> (entire files), 996 <issue 996_>_ (multiple lines only when appearing together), 1741 <issue 1741_>_ (remainder of a function), and 1803 <issue 1803_>_
(arbitrary sequence of marked lines). See the :ref:multi_line_exclude
section of the docs for more details and examples.
The JSON report now includes per-function and per-class coverage information.
Thanks to Daniel Diniz <pull 1809_>_ for getting the work started. This
closes issue 1793_ and issue 1532_.
Fixed an incorrect calculation of "(no class)" lines in the HTML classes
report.
If you attempt to combine statement coverage data with branch coverage data,
coverage.py used to fail with the message "Can't combine arc data with line
data" or its reverse, "Can't combine line data with arc data." These
messages used internal terminology, making it hard for people to understand
the problem. They are now changed to mention "branch coverage data" and
"statement coverage data."
Fixed a minor branch coverage problem with wildcard match/case cases using
names or guard clauses.
Started testing on 3.13 free-threading (nogil) builds of Python. I'm not
claiming full support yet. Closes issue 1799_.
#12652: Resolve regression [conda]{.title-ref} environments where no longer being automatically detected.
-- by RonnyPfannschmidt{.interpreted-text role="user"}
8.3.1
pytest 8.3.1 (2024-07-20)
The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes.
8.3.0
pytest 8.3.0 (2024-07-20)
New features
#12231: Added [--xfail-tb]{.title-ref} flag, which turns on traceback output for XFAIL results.
If the [--xfail-tb]{.title-ref} flag is not given, tracebacks for XFAIL results are NOT shown.
The style of traceback for XFAIL is set with [--tb]{.title-ref}, and can be [auto|long|short|line|native|no]{.title-ref}.
Note: Even if you have [--xfail-tb]{.title-ref} set, you won't see them if [--tb=no]{.title-ref}.
Some history:
With pytest 8.0, [-rx]{.title-ref} or [-ra]{.title-ref} would not only turn on summary reports for xfail, but also report the tracebacks for xfail results. This caused issues with some projects that utilize xfail, but don't want to see all of the xfail tracebacks.
This change detaches xfail tracebacks from [-rx]{.title-ref}, and now we turn on xfail tracebacks with [--xfail-tb]{.title-ref}. With this, the default [-rx]{.title-ref}/ [-ra]{.title-ref} behavior is identical to pre-8.0 with respect to xfail tracebacks. While this is a behavior change, it brings default behavior back to pre-8.0.0 behavior, which ultimately was considered the better course of action.
#12281: Added support for keyword matching in marker expressions.
Now tests can be selected by marker keyword arguments.
Supported values are int{.interpreted-text role="class"}, (unescaped) str{.interpreted-text role="class"}, bool{.interpreted-text role="class"} & None{.interpreted-text role="data"}.
See marker examples <marker_keyword_expression_example>{.interpreted-text role="ref"} for more information.
-- by lovetheguitar{.interpreted-text role="user"}
#12567: Added --no-fold-skipped command line option.
If this option is set, then skipped tests in short summary are no longer grouped
by reason but all tests are printed individually with their nodeid in the same
way as other statuses.
#12096: Warn when files are overwritten in the build directory.
Patch by Adam Turner and Bénédikt Tran.
#12620: Ensure that old-style object description options are respected.
Patch by Adam Turner.
#12601, #12625: Support callable objects in :py:class:~typing.Annotated type
metadata in the Python domain.
Patch by Adam Turner.
#12601, #12622: Resolve :py:class:~typing.Annotated warnings with
sphinx.ext.autodoc,
especially when using :mod:dataclasses as type metadata.
Patch by Adam Turner.
#12589, #12626: autosummary: Fix warnings with :rst:role:!autolink.
Patch by Adam Turner.
Release 7.4.6 (released Jul 18, 2024)
Bugs fixed
#12589, #9743, #12609: autosummary: Do not add the package prefix when
generating autosummary directives for modules within a package.
Patch by Adam Turner.
#12613: Reduce log severity for ambiguity detection during inventory loading.
Patch by James Addison.
Release 7.4.5 (released Jul 16, 2024)
Bugs fixed
#12593, #12600: Revert coercing the type of selected :confval:html_sidebars
values to a list.
Log an error message when string values are detected.
Patch by Adam Turner.
#12594: LaTeX: since 7.4.0, :rst:dir:seealso and other "light" admonitions
now break PDF builds if they contain a :dudir:figure directive; and also
if they are contained in a table cell (rendered by tabulary).
Patch by Jean-François B.
We use inspect to determine whether the current contents manager derives from AsyncContentsManager (which is not
supported by Jupytext at the moment). This fixes a compatibility issue with jupyter-fs==1.0.0 (#1239). Thanks to Mahendra Paipuri for this PR!
We have fixed a typo when build_jupytext_contents_manager_class can't be imported (#1162)
A Python 3.13 deprecation warning was fixed #1241 - thanks to Jerry James
We have fixed a typo when build_jupytext_contents_manager_class can't be imported (#1162)
Some dependencies of the JupyterLab extensions were updated (#1243, #1245)
Added
Lua notebooks are now supported (#1252) - thanks to erentar for this contribution
Go notebooks are supported too (#1244)! Many thanks to Jan Pfeifer, author of GoNB, and to HaveF for their help on this topic.
Empty prefixes are now allowed in Jupytext format when specified as a dictionary (#1144)
Changed
We've had to deactivate the tests on the Quarto format in the CI as the Quarto round trip might now add a Markdown cell to the notebook (#1255)
We use inspect to determine whether the current contents manager derives from AsyncContentsManager (which is not
supported by Jupytext at the moment). This fixes a compatibility issue with jupyter-fs==1.0.0 (#1239). Thanks to Mahendra Paipuri for this PR!
We have fixed a typo when build_jupytext_contents_manager_class can't be imported (#1162)
A Python 3.13 deprecation warning was fixed #1241 - thanks to Jerry James
We have fixed a typo when build_jupytext_contents_manager_class can't be imported (#1162)
Some dependencies of the JupyterLab extensions were updated (#1243, #1245)
Added
Lua notebooks are now supported (#1252) - thanks to erentar for this contribution
Go notebooks are supported too (#1244)! Many thanks to Jan Pfeifer, author of GoNB, and to HaveF for their help on this topic.
Empty prefixes are now allowed in Jupytext format when specified as a dictionary (#1144)
Changed
We've had to deactivate the tests on the Quarto format in the CI as the Quarto round trip
might now add a Markdown cell to the notebook (#1255)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Bumps the package-dependencies group with 9 updates in the /rats-processors directory:
2.0.0
3.0.1
7.5.3
7.6.0
6.29.4
6.29.5
1.1.365
1.1.373
8.2.1
8.3.2
0.4.7
0.5.5
7.3.7
7.4.7
2.1.0
2.2.3
1.16.2
1.16.3
Updates
pydot
from 2.0.0 to 3.0.1Changelog
Sourced from pydot's changelog.
Commits
0daa0b4
Preparing release 3.0.144d5fdb
Fix edge quoting (broken in 3.0.0) (#384)85febeb
Changelog: Separate into categories (#382)d37f84c
Back to development: 3.0.184113ff
Preparing release 3.0.0b363841
Prepare changelog for 3.0.0 (#378)b1b4b70
Parser: tighten port syntax (#379)3dec764
Bump fsfe/reuse-action from 3.0.0 to 4.0.0 (#381)b62144d
Make repo REUSE compliant, add CI job for reuse-action (#380)baac987
Remove support for old invalid syntax (#377)Updates
coverage
from 7.5.3 to 7.6.0Changelog
Sourced from coverage's changelog.
... (truncated)
Commits
59a3cd7
docs: sample HTML for 7.6.07f27fa7
docs: prep for 7.6.06a268b0
docs: issues closed by the json region reporting5bfe9e7
chore: bump actions/setup-python from 5.1.0 to 5.1.1 (#1814)ab609ef
docs: mention json region reporting in the changes92d96b9
fix: json report needs 'no class' and 'no function' alsoe47e7e7
refactor: move duplicate code into methods3d6be2b
fix: json format should bump for regionsa9992d2
test: add a test of json regions with branches8b89764
test: json expectations should have explicit format numberUpdates
ipykernel
from 6.29.4 to 6.29.5Release notes
Sourced from ipykernel's releases.
Changelog
Sourced from ipykernel's changelog.
Commits
b1283b1
Publish 6.29.51e62d48
[6.x] Update Release Scripts (#1251)22d4e58
Fix use of "%matplotlib osx" (#1237)Updates
pyright
from 1.1.365 to 1.1.373Commits
5d315f9
[pyright updated to 1.1.373] Update Version (#284)59a4bdf
[pyright updated to 1.1.372] Update Version (#283)ca00a93
[pyright updated to 1.1.371] Update Version (#282)14f3e58
Pyright NPM Package update to 1.1.370 (#281)804dafb
chore(internal): loosen twine dependency903dbc6
chore(ci): enable workflow_dispatch for releasing82d28c7
chore(internal): pin twine dependencyffa917f
[pyright updated to 1.1.369] Update Version (#279)604a0a0
[pyright updated to 1.1.368] Update Version (#278)dd680ba
Pyright NPM Package update to 1.1.367 (#277)Updates
pytest
from 8.2.1 to 8.3.2Release notes
Sourced from pytest's releases.
... (truncated)
Commits
bbcec9c
Prepare release version 8.3.278fe8b6
Merge pull request #12657 from pytest-dev/patchback/backports/8.3.x/6c806b499...238bad2
Merge pull request #12656 from RonnyPfannschmidt/fix-12652-detect-conda-envae6034a
Merge pull request #12641 from pytest-dev/patchback/backports/8.3.x/c03989cee...31337ab
Merge pull request #12640 from pytest-dev/update-userca3070b
Merge pull request #12637 from pytest-dev/release-8.3.1de98446
Prepare release version 8.3.1bd0a042
Merge pull request #12636 from pytest-dev/update-release-notes664325b
doc/changelog: update 8.3.0 notes19d225d
Merge pull request #12635 from pytest-dev/release-8.3.0Updates
ruff
from 0.4.7 to 0.5.5Release notes
Sourced from ruff's releases.
... (truncated)
Changelog
Sourced from ruff's changelog.
... (truncated)
Commits
fc16d8d
Bump version to 0.5.5 (#12510)175e5d7
Add missing traceback line inf-string-in-exception
docstring. (#12508)c03f257
Add note about the breaking change innvim-lspconfig
(#12507)6bbb4a2
Add setup docs for Zed editor (#12501)2ce3e3a
Fix the search path tests on MacOS (#12503)2a64ccc
Avoid applyingignore-names
toself
andcls
function names (#12497)928ffd6
IgnoreNPY201
insideexcept
blocks for compatibility with older numpy ver...e52be09
[red-knot] Improve validation for search paths (#12376)8890735
[flake8-bugbear] Allow singleton tuples with starred expressions in B013 (#12...eac965e
[red-knot] Watch search paths (#12407)Updates
sphinx
from 7.3.7 to 7.4.7Release notes
Sourced from sphinx's releases.
Changelog
Sourced from sphinx's changelog.
... (truncated)
Commits
0d912c8
Bump to 7.4.7 finalbbc97e0
autosummary: Filter invalid import prefixes inautolink
(#12626)6c486a5
Fix detecting file changes for the overwritten file warning (#12627)2bd973e
autodoc: Fix warnings with dataclasses inAnnotated
metadata (#12622)dd77f85
Support callables inAnnotated
types (#12625)1ed4ca7
Marktest_build_manpage
as XFAIL following changes in Docutils mastercd8ce07
Update message catalogues following reverted commitsc6cd25f
Partially revert "Update message catalogues (#11626)"fa2ba7d
Partially Revert "[bot]: Update message catalogues (#12563)"e439c6f
Ensure that old-style object description options are respected (#12620)Updates
sphinx-autodoc-typehints
from 2.1.0 to 2.2.3Release notes
Sourced from sphinx-autodoc-typehints's releases.
Commits
d38f8f7
[pre-commit.ci] pre-commit autoupdate (#466)a427536
Fix rendering when docstring starst with a directive (#468)fdad0d7
Fix mypy errors due to unneeded type ignores (#469)df66980
[pre-commit.ci] pre-commit autoupdate (#465)ea99f28
Fix for Issue #384: typehints_defaults = "braces-after" fails for a multiline...0435d07
Fix issue #462 and another alias processing bug (#463)fb240ea
Support autodoc_type_aliases configuration (#459)41b2900
Bump pypa/gh-action-pypi-publish from 1.8.14 to 1.9.0 (#460)047ac44
[pre-commit.ci] pre-commit autoupdate (#461)fd0a0c6
[pre-commit.ci] pre-commit autoupdate (#458)Updates
jupytext
from 1.16.2 to 1.16.3Release notes
Sourced from jupytext's releases.
Changelog
Sourced from jupytext's changelog.
Commits
c0a6dc8
Version 1.16.34594d86
CheckContentsManager
base class usinginspect
(#1254)d3d1a3e
Deactivate the Quarto tests on the CI for nowcda2cb4
Fix re.split DeprecationWarning (#1241)ce74c51
Add support for the Go language (#1250)508f4ea
Allow an empty prefix in format dict29a979f
build(deps): bump braces from 3.0.2 to 3.0.3 in /jupyterlab4e95b2c
Fix a typo when build_jupytext_contents_manager_class (#1253)a9131de
Add the text version of the lua example notebook666c1f0
Add language support for LuaDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show