chore(deps): bump idna from 3.14 to 3.15 in /docs#189
Closed
dependabot[bot] wants to merge 1 commit into
Closed
Conversation
Bumps [idna](https://github.com/kjd/idna) from 3.14 to 3.15. - [Release notes](https://github.com/kjd/idna/releases) - [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md) - [Commits](kjd/idna@v3.14...v3.15) --- updated-dependencies: - dependency-name: idna dependency-version: '3.15' dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #189 +/- ##
=======================================
Coverage 87.66% 87.66%
=======================================
Files 28 28
Lines 1897 1897
Branches 198 198
=======================================
Hits 1663 1663
Misses 158 158
Partials 76 76 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Test Results (macos)
tests/test_tm_data_types.py('/Users/runner/work/tm_data_types/tm_data_types/tests/test_tm_data_types.py', 549, 'Skipped: Skipping 1G test in GitHub Actions environment') |
Test Results (windows)
tests\test_tm_data_types.pytmp_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0')
def test_parallel(tmp_path: Path) -> None:
"""Check to make sure that a parallel write can write a waveform and read the same waveform."""
waveform_info = {}
file_count = 10
for index in range(file_count):
waveform_path = tmp_path / f"test_parallel_{index}.wfm"
waveform_data = np.array([index * locale for locale in range(10)], np.int16)
waveform = AnalogWaveform()
waveform.y_axis_values = waveform_data
waveform.meta_info = AnalogWaveformMetaInfo(
y_offset=0.0,
y_position=0.0,
)
waveform_info[waveform_path.as_posix()] = waveform
write_files_in_parallel(list(waveform_info.keys()), list(waveform_info.values()))
if read_info := read_files_in_parallel(list(waveform_info.keys())):
for file_path, waveform in read_info:
> assert np.array_equal(waveform.y_axis_values, waveform_info[file_path].y_axis_values)
E assert False
E + where False = <function array_equal at 0x000001DB5EB11830>(RawSample([], dtype=int16), RawSample([ 0, 7, 14, 21, 28, 35, 42, 49, 56, 63], dtype=int16))
E + where <function array_equal at 0x000001DB5EB11830> = np.array_equal
E + and RawSample([], dtype=int16) = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67194F50>.y_axis_values
E + and RawSample([ 0, 7, 14, 21, 28, 35, 42, 49, 56, 63], dtype=int16) = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670E0E50>.y_axis_values
file_count = 10
file_path = 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_7.wfm'
index = 9
read_info = [('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_3.wfm',
<tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670B12B0>),
('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_6.wfm',
<tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67208050>),
('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_0.wfm',
<tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB6709DD90>),
('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_9.wfm',
<tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67196090>),
('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_7.wfm',
<tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67194F50>),
('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_4.wfm',
<tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB6708FEE0>),
('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_1.wfm',
<tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67168D60>)]
tmp_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0')
waveform = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67194F50>
waveform_data = array([ 0, 9, 18, 27, 36, 45, 54, 63, 72, 81], dtype=int16)
waveform_info = {'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_0.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670C9310>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_1.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67066D70>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_2.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67066FD0>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_3.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670C20F0>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_4.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67077DF0>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_5.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67108050>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_6.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670E0C50>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_7.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670E0E50>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_8.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB6707CF50>,
'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_9.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB6707D7C0>}
waveform_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_9.wfm')
tests\test_tm_data_types.py:93: AssertionError('D:\\a\\tm_data_types\\tm_data_types\\tests\\test_tm_data_types.py', 549, 'Skipped: Skipping 1G test in GitHub Actions environment') |
Test Results (ubuntu)
tests/test_tm_data_types.py('/home/runner/work/tm_data_types/tm_data_types/tests/test_tm_data_types.py', 549, 'Skipped: Skipping 1G test in GitHub Actions environment') |
Contributor
Author
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps idna from 3.14 to 3.15.
Changelog
Sourced from idna's changelog.
Commits
af30a09Release 3.1530314d4Pre-release 3.15rc005d4b21Merge pull request #237 from kjd/convert-docs-to-markdown2987fdbConvert README and HISTORY from reStructuredText to Markdown59fa800Merge pull request #236 from kjd/dependabot/github_actions/actions-f3e34333eadef6983Merge branch 'master' into dependabot/github_actions/actions-f3e34333eabbd8004Merge pull request #234 from StanFromIreland/patch-1edd07c0Bump github/codeql-action from 3.35.2 to 4.35.2 in the actions group5557db0Merge branch 'master' into patch-1f11746cMerge pull request #235 from StanFromIreland/patch-2Dependabot 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.