jupyter / nbdime

Tools for diffing and merging of Jupyter notebooks.
http://nbdime.readthedocs.io
Other
2.65k stars 159 forks source link

3.1.1: pytest is failing #611

Open kloczek opened 2 years ago

kloczek commented 2 years ago

I'm trying to package your module as an rpm package. So I'm using the typical build, install and test cycle used on building packages from non-root account.

Looks like git command is incorrectly used.

```console + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-nbdime-3.1.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-nbdime-3.1.1-2.fc35.x86_64/usr/lib/python3.8/site-packages + /usr/bin/pytest -ra =========================================================================== test session starts ============================================================================ platform linux -- Python 3.8.12, pytest-6.2.5, py-1.10.0, pluggy-0.13.1 benchmark: 3.4.1 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000) Using --randomly-seed=1079998253 rootdir: /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1, configfile: pytest.ini, testpaths: nbdime/tests plugins: shutil-1.7.0, virtualenv-1.7.0, mock-3.6.1, cov-2.12.1, anyio-3.3.4, forked-1.3.0, xdist-2.3.0, flaky-3.7.0, tornasync-0.6.0.post2, console-scripts-1.2.0, trio-0.7.0, timeout-2.0.1, asyncio-0.16.0, freezegun-0.4.2, flake8-1.0.7, pyfakefs-4.5.3, hypothesis-6.29.3, benchmark-3.4.1, profiling-1.7.0, datadir-1.3.1, regressions-2.2.0, randomly-3.8.0 collected 5754 items nbdime/tests/test_diff_json_conversion.py x. [ 0%] nbdime/tests/test_git_diffdriver.py .EEE..E. [ 0%] nbdime/tests/test_diff.py .. [ 0%] nbdime/tests/test_utils.py .E... [ 0%] nbdime/tests/test_diff_sequence.py .. [ 0%] nbdime/tests/test_merge_format.py .............................................................................. [ 1%] nbdime/tests/test_web.py x..xExxx. [ 1%] nbdime/tests/test_myers.py ... [ 1%] nbdime/tests/test_js_artifacts_installed.py . [ 1%] nbdime/tests/test_git_filter_integration.py .EE.EEEE.EEE [ 2%] nbdime/tests/test_diff_format.py ........................................................................................................................ [ 4%] nbdime/tests/test_package.py . [ 4%] nbdime/tests/test_prettyprint.py ..................... [ 4%] nbdime/tests/test_decision_tools.py .x........... [ 4%] nbdime/tests/test_hg_differ.py ss.s [ 4%] nbdime/tests/test_notebook_diff.py ................................................................................................................................. [ 7%] .................................................................................................................................................................... [ 9%] .................................................................................................................................................................... [ 12%] .................................................................................................................................................................... [ 15%] .................................................................................................................................................................... [ 18%] .................................................................................................................................................................... [ 21%] .................................................................................................................................................................... [ 24%] .................................................................................................................................................................... [ 27%] .................................................................................................................................................................... [ 29%] .................................................................................................................................................................... [ 32%] .................................................................................................................................................................... [ 35%] .................................................................................................................................................................... [ 38%] .................................................................................................................................................................... [ 41%] .................................................................................................................................................................... [ 44%] .................................................................................................................................................................... [ 47%] .................................................................................................................................................................... [ 49%] .................................................................................................................................................................... [ 52%] .................................................................................................................................................................... [ 55%] .................................................................................................................................................................... [ 58%] .................................................................................................................................................................... [ 61%] .................................................................................................................................................................... [ 64%] .................................................................................................................................................................... [ 66%] .................................................................................................................................................................... [ 69%] .................................................................................................................................................................... [ 72%] .................................................................................................................................................................... [ 75%] .................................................................................................................................................................... [ 78%] .................................................................................................................................................................... [ 81%] .................................................................................................................................................................... [ 84%] .................................................................................................................................................................... [ 86%] .................................................................................................................................................................... [ 89%] .................................................................................................................................................................... [ 92%] .................................................................................................................................................................... [ 95%] ..... [ 95%] nbdime/tests/test_directory_differ.py .... [ 95%] nbdime/tests/test_diff_performance.py . [ 95%] nbdime/tests/test_diff_sequence_difflib.py . [ 95%] nbdime/tests/test_merge_notebooks_inline.py ..........s....s............s....... [ 96%] nbdime/tests/test_apply_merge.py .. [ 96%] nbdime/tests/test_merge.py .x.............. [ 96%] nbdime/tests/test_cli_apps.py .s..EE...E...EE.Es..s...s..E.E.EEE [ 97%] nbdime/tests/test_diff_sequence_bruteforce.py . [ 97%] nbdime/tests/test_server_extension.py EEEEE.EEEEEE.EEEEEEE [ 97%] nbdime/tests/test_diff_gitrefs.py EEEEEEEEEE.EEEEEEEEE [ 97%] nbdime/tests/test_autoresolve.py ..... [ 98%] nbdime/tests/test_args.py ..... [ 98%] nbdime/tests/test_patch.py ... [ 98%] nbdime/tests/test_merge_notebooks.py .......x..............s............s.....s..x....................x......................s.......s......x... [100%] ================================================================================== ERRORS ================================================================================== _______________________________________________________ ERROR at setup of test_git_diff_driver_strip_outputs_filter ________________________________________________________ tmpdir = local('/tmp/pytest-of-tkloczko/pytest-8/test_git_diff_driver_strip_out0') request = >, filespath = '/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/tests/files' needs_git = None, slow = None @fixture def git_repo(tmpdir, request, filespath, needs_git, slow): repo = str(tmpdir.join('repo')) os.mkdir(repo) save_cwd = os.getcwd() os.chdir(repo) request.addfinalizer(lambda: os.chdir(save_cwd)) call('git init'.split()) # setup base branch src = filespath shutil.copy(pjoin(src, 'multilevel-test-base.ipynb'), pjoin(repo, 'merge-no-conflict.ipynb')) shutil.copy(pjoin(src, 'inline-conflict--1.ipynb'), pjoin(repo, 'merge-conflict.ipynb')) shutil.copy(pjoin(src, 'src-and-output--1.ipynb'), pjoin(repo, 'diff.ipynb')) call('git add *.ipynb') > call('git commit -m "init base branch"') /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/tests/conftest.py:100: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/tests/utils.py:149: in call return check_call(cmd, stdout=sys.stdout, stderr=sys.stderr) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ popenargs = (['git', 'commit', '-m', 'init base branch'],) kwargs = {'stderr': <_io.TextIOWrapper name="<_io.FileIO name=8 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>, 'stdout': <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>} retcode = 128, cmd = ['git', 'commit', '-m', 'init base branch'] def check_call(*popenargs, **kwargs): """Run command with arguments. Wait for command to complete. If the exit code was zero then return, otherwise raise CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute. The arguments are the same as for the call function. Example: check_call(["ls", "-l"]) """ retcode = call(*popenargs, **kwargs) if retcode: cmd = kwargs.get("args") if cmd is None: cmd = popenargs[0] > raise CalledProcessError(retcode, cmd) E subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit status 128. /usr/lib64/python3.8/subprocess.py:364: CalledProcessError -------------------------------------------------------------------------- Captured stdout setup --------------------------------------------------------------------------- Initialized empty Git repository in /tmp/pytest-of-tkloczko/pytest-8/test_git_diff_driver_strip_out0/repo/.git/ -------------------------------------------------------------------------- Captured stderr setup --------------------------------------------------------------------------- hint: Using 'master' as the name for the initial branch. This default branch name hint: is subject to change. To configure the initial branch name to use in all hint: of your new repositories, which will suppress this warning, call: hint: hint: git config --global init.defaultBranch hint: hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and hint: 'development'. The just-created branch can be renamed via this command: hint: hint: git branch -m Author identity unknown *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got 'tkloczko@ss-desktop.(none)') _________________________________________________________ ERROR at setup of test_git_diff_driver_add_helper_filter _________________________________________________________ tmpdir = local('/tmp/pytest-of-tkloczko/pytest-8/test_git_diff_driver_add_helpe0'), request = > filespath = '/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/tests/files', needs_git = None, slow = None @fixture def git_repo(tmpdir, request, filespath, needs_git, slow): repo = str(tmpdir.join('repo')) os.mkdir(repo) save_cwd = os.getcwd() os.chdir(repo) request.addfinalizer(lambda: os.chdir(save_cwd)) call('git init'.split()) # setup base branch src = filespath shutil.copy(pjoin(src, 'multilevel-test-base.ipynb'), pjoin(repo, 'merge-no-conflict.ipynb')) shutil.copy(pjoin(src, 'inline-conflict--1.ipynb'), pjoin(repo, 'merge-conflict.ipynb')) shutil.copy(pjoin(src, 'src-and-output--1.ipynb'), pjoin(repo, 'diff.ipynb')) call('git add *.ipynb') > call('git commit -m "init base branch"') /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/tests/conftest.py:100: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/tests/utils.py:149: in call return check_call(cmd, stdout=sys.stdout, stderr=sys.stderr) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ popenargs = (['git', 'commit', '-m', 'init base branch'],) kwargs = {'stderr': <_io.TextIOWrapper name="<_io.FileIO name=8 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>, 'stdout': <_io.TextIOWrapper name="<_io.FileIO name=6 mode='rb+' closefd=True>" mode='r+' encoding='utf-8'>} retcode = 128, cmd = ['git', 'commit', '-m', 'init base branch'] def check_call(*popenargs, **kwargs): """Run command with arguments. Wait for command to complete. If the exit code was zero then return, otherwise raise CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute. The arguments are the same as for the call function. Example: check_call(["ls", "-l"]) """ retcode = call(*popenargs, **kwargs) if retcode: cmd = kwargs.get("args") if cmd is None: cmd = popenargs[0] > raise CalledProcessError(retcode, cmd) E subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit status 128. /usr/lib64/python3.8/subprocess.py:364: CalledProcessError -------------------------------------------------------------------------- Captured stdout setup --------------------------------------------------------------------------- Initialized empty Git repository in /tmp/pytest-of-tkloczko/pytest-8/test_git_diff_driver_add_helpe0/repo/.git/ -------------------------------------------------------------------------- Captured stderr setup --------------------------------------------------------------------------- hint: Using 'master' as the name for the initial branch. This default branch name hint: is subject to change. To configure the initial branch name to use in all hint: of your new repositories, which will suppress this warning, call: hint: hint: git config --global init.defaultBranch hint: hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and hint: 'development'. The just-created branch can be renamed via this command: hint: hint: git branch -m Author identity unknown *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got 'tkloczko@ss-desktop.(none)') [..] ============================================================================= warnings summary ============================================================================= nbdime/tests/test_diff_performance.py: 14 warnings nbdime/tests/test_prettyprint.py: 6 warnings nbdime/tests/test_merge_format.py: 36 warnings nbdime/tests/test_merge_notebooks.py: 250 warnings nbdime/tests/test_merge_notebooks_inline.py: 189 warnings /usr/lib/python3.8/site-packages/jsonschema/validators.py:190: DeprecationWarning: Passing a schema to Validator.iter_errors is deprecated and will be removed in a future release. Call validator.evolve(schema=new_schema).iter_errors(...) instead. warnings.warn( -- Docs: https://docs.pytest.org/en/stable/warnings.html ========================================================================= short test summary info ========================================================================== SKIPPED [7] nbdime/tests/conftest.py:69: requires mercurial SKIPPED [1] nbdime/tests/test_merge_notebooks.py:700: unconditional skip SKIPPED [1] nbdime/tests/test_merge_notebooks.py:827: unconditional skip SKIPPED [1] nbdime/tests/test_merge_notebooks.py:797: unconditional skip SKIPPED [1] nbdime/tests/test_merge_notebooks.py:579: unconditional skip SKIPPED [1] nbdime/tests/test_merge_notebooks.py:776: unconditional skip SKIPPED [1] nbdime/tests/test_merge_notebooks_inline.py:284: unconditional skip SKIPPED [1] nbdime/tests/test_merge_notebooks_inline.py:331: unconditional skip SKIPPED [1] nbdime/tests/test_merge_notebooks_inline.py:180: unconditional skip XFAIL nbdime/tests/test_decision_tools.py::test_build_diffs_unsorted XFAIL nbdime/tests/test_merge.py::test_deep_merge_lists_delete_no_conflict__currently_expected_failures reason: [NOTRUN] flaws in deep diffing of lists, not identifying almost equal sublists XFAIL nbdime/tests/test_diff_json_conversion.py::test_diff_to_json_patch reason: Not comparing to jsonpatch XFAIL nbdime/tests/test_web.py::test_api_diff reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_api_diff will be ignored XFAIL nbdime/tests/test_web.py::test_offline_mathjax reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_offline_mathjax will be ignored XFAIL nbdime/tests/test_web.py::test_fetch_merge reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_fetch_merge will be ignored XFAIL nbdime/tests/test_web.py::test_api_merge reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_api_merge will be ignored XFAIL nbdime/tests/test_web.py::test_fetch_diff reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_fetch_diff will be ignored XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_conflicts_get_diff_indices_shifted XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_inserts_within_deleted_range XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_multiline_cell_source_conflict XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_interleave_cell_add_remove ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_invalid_subdir - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' retur... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref_subdir_path - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref_non_existant - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_invalid_path - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returne... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_subdir_filename_path - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']'... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref_invalid_path - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref_subdir - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero ... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref_subdir_with_path - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref_subdir_filename_path - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' retu... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_filename - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned no... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref_subdir_filename - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned ... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_non_existant - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returne... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit st... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_subdir_filename - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' retu... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_subdir - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_subdir_path - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero ex... ERROR nbdime/tests/test_diff_gitrefs.py::test_ref_vs_ref_filename - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zer... ERROR nbdime/tests/test_diff_gitrefs.py::test_head_vs_workdir_subdir_with_path - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' ret... ERROR nbdime/tests/test_server_extension.py::test_git_difftool[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned ... ERROR nbdime/tests/test_server_extension.py::test_git_diff_api[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned ... ERROR nbdime/tests/test_server_extension.py::test_fails_without_token[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch... ERROR nbdime/tests/test_server_extension.py::test_git_difftool[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' ret... ERROR nbdime/tests/test_server_extension.py::test_fails_without_token[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' re... ERROR nbdime/tests/test_server_extension.py::test_diff_api_symlink[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']'... ERROR nbdime/tests/test_server_extension.py::test_isgit_nonrepo[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned... ERROR nbdime/tests/test_server_extension.py::test_fails_with_wrong_token[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base bra... ERROR nbdime/tests/test_server_extension.py::test_isgit[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned n... ERROR nbdime/tests/test_server_extension.py::test_difftool[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-... ERROR nbdime/tests/test_server_extension.py::test_diff_api[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-... ERROR nbdime/tests/test_server_extension.py::test_diff_api[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returne... ERROR nbdime/tests/test_server_extension.py::test_diff_api_symlink[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' retur... ERROR nbdime/tests/test_server_extension.py::test_difftool[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returne... ERROR nbdime/tests/test_server_extension.py::test_fails_with_wrong_token[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']'... ERROR nbdime/tests/test_server_extension.py::test_isgit_nonrepo[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' re... ERROR nbdime/tests/test_server_extension.py::test_isgit[notebook] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zer... ERROR nbdime/tests/test_server_extension.py::test_git_diff_api[jupyter_server] - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' ret... ERROR nbdime/tests/test_cli_apps.py::test_difftool_config - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit s... ERROR nbdime/tests/test_cli_apps.py::test_git_diffdriver - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit st... ERROR nbdime/tests/test_cli_apps.py::test_config_git_fails - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit ... ERROR nbdime/tests/test_cli_apps.py::test_mergetool_config - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit ... ERROR nbdime/tests/test_cli_apps.py::test_nbdiff_app_gitrefs - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exi... ERROR nbdime/tests/test_cli_apps.py::test_diffdriver_config - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit... ERROR nbdime/tests/test_cli_apps.py::test_mergedriver_config - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exi... ERROR nbdime/tests/test_cli_apps.py::test_git_mergetool - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit sta... ERROR nbdime/tests/test_cli_apps.py::test_config_git - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit status... ERROR nbdime/tests/test_cli_apps.py::test_git_difftool - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit stat... ERROR nbdime/tests/test_cli_apps.py::test_git_mergedriver - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit s... ERROR nbdime/tests/test_git_filter_integration.py::test_filter_cmd_valid_filter - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' re... ERROR nbdime/tests/test_git_filter_integration.py::test_apply_filter_no_filter - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' ret... ERROR nbdime/tests/test_git_filter_integration.py::test_interrogate_filter_blank - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' r... ERROR nbdime/tests/test_git_filter_integration.py::test_apply_filter_invalid_filter - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']... ERROR nbdime/tests/test_git_filter_integration.py::test_apply_filter_valid_filter - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' ... ERROR nbdime/tests/test_git_filter_integration.py::test_interrogate_filter_set - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' ret... ERROR nbdime/tests/test_git_filter_integration.py::test_interrogate_filter_unset - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' r... ERROR nbdime/tests/test_git_filter_integration.py::test_interrogate_filter_unspecified - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branc... ERROR nbdime/tests/test_git_filter_integration.py::test_interrogate_filter_value - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' r... ERROR nbdime/tests/test_web.py::test_diff_web_gitrefs - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zero exit statu... ERROR nbdime/tests/test_git_diffdriver.py::test_git_diff_driver_add_helper_filter - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' ... ERROR nbdime/tests/test_git_diffdriver.py::test_git_diff_driver_strip_outputs_filter - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch'... ERROR nbdime/tests/test_git_diffdriver.py::test_git_diff_driver_noop_filter - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' return... ERROR nbdime/tests/test_git_diffdriver.py::test_git_diff_driver_no_filter_without_flag - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branc... ERROR nbdime/tests/test_utils.py::test_locate_gitattributes_local - subprocess.CalledProcessError: Command '['git', 'commit', '-m', 'init base branch']' returned non-zer... FAILED nbdime/tests/test_js_artifacts_installed.py::test_nbdime_js_artifacts_present - ValueError: missing files: ['/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/web... ======================================= 1 failed, 5663 passed, 15 skipped, 12 xfailed, 495 warnings, 63 errors in 140.57s (0:02:20) ======================================== ```
vidartf commented 2 years ago

@kloczek Note that our CI tests set up some dummy git config before running. Maybe you need to do something similar on your system? I'm not sure what you mean with "Looks like git command is incorrectly used" ?

https://github.com/jupyter/nbdime/blob/17d103c5102f98fb83417fc54a99237795110b3a/.github/workflows/tests.yml#L104-L105

kloczek commented 1 year ago

I did not chenge anything in my build procesure and on testing 3.1.1 I see only on eunit failing now

+ PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-nbdime-3.1.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-nbdime-3.1.1-2.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.15, pytest-7.2.0, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1, configfile: pytest.ini, testpaths: nbdime/tests
plugins: anyio-3.6.2
collected 5754 items

nbdime/tests/test_apply_merge.py ..                                                                                                                                  [  0%]
nbdime/tests/test_args.py .....                                                                                                                                      [  0%]
nbdime/tests/test_autoresolve.py .....                                                                                                                               [  0%]
nbdime/tests/test_cli_apps.py ..............................ssss                                                                                                     [  0%]
nbdime/tests/test_decision_tools.py ...........x.                                                                                                                    [  1%]
nbdime/tests/test_diff.py ..                                                                                                                                         [  1%]
nbdime/tests/test_diff_format.py ........................................................................................................................            [  3%]
nbdime/tests/test_diff_gitrefs.py ....................                                                                                                               [  3%]
nbdime/tests/test_diff_json_conversion.py .x                                                                                                                         [  3%]
nbdime/tests/test_diff_performance.py .                                                                                                                              [  3%]
nbdime/tests/test_diff_sequence.py ..                                                                                                                                [  3%]
nbdime/tests/test_diff_sequence_bruteforce.py .                                                                                                                      [  3%]
nbdime/tests/test_diff_sequence_difflib.py .                                                                                                                         [  3%]
nbdime/tests/test_directory_differ.py ....                                                                                                                           [  3%]
nbdime/tests/test_git_diffdriver.py ........                                                                                                                         [  3%]
nbdime/tests/test_git_filter_integration.py ............                                                                                                             [  4%]
nbdime/tests/test_hg_differ.py sss.                                                                                                                                  [  4%]
nbdime/tests/test_js_artifacts_installed.py F                                                                                                                        [  4%]
nbdime/tests/test_merge.py ....x...........                                                                                                                          [  4%]
nbdime/tests/test_merge_format.py ..............................................................................                                                     [  5%]
nbdime/tests/test_merge_notebooks.py ....................................................................................x.xxx...s....s..sss....                     [  7%]
nbdime/tests/test_merge_notebooks_inline.py .......s..s.s.......................                                                                                     [  8%]
nbdime/tests/test_myers.py ...                                                                                                                                       [  8%]
nbdime/tests/test_notebook_diff.py ................................................................................................................................. [ 10%]
.................................................................................................................................................................... [ 13%]
.................................................................................................................................................................... [ 16%]
.................................................................................................................................................................... [ 19%]
.................................................................................................................................................................... [ 21%]
.................................................................................................................................................................... [ 24%]
.................................................................................................................................................................... [ 27%]
.................................................................................................................................................................... [ 30%]
.................................................................................................................................................................... [ 33%]
.................................................................................................................................................................... [ 36%]
.................................................................................................................................................................... [ 39%]
.................................................................................................................................................................... [ 41%]
.................................................................................................................................................................... [ 44%]
.................................................................................................................................................................... [ 47%]
.................................................................................................................................................................... [ 50%]
.................................................................................................................................................................... [ 53%]
.................................................................................................................................................................... [ 56%]
.................................................................................................................................................................... [ 58%]
.................................................................................................................................................................... [ 61%]
.................................................................................................................................................................... [ 64%]
.................................................................................................................................................................... [ 67%]
.................................................................................................................................................................... [ 70%]
.................................................................................................................................................................... [ 73%]
.................................................................................................................................................................... [ 76%]
.................................................................................................................................................................... [ 78%]
.................................................................................................................................................................... [ 81%]
.................................................................................................................................................................... [ 84%]
.................................................................................................................................................................... [ 87%]
.................................................................................................................................................................... [ 90%]
.................................................................................................................................................................... [ 93%]
.................................................................................................................................................................... [ 96%]
.................................................................................................................................................................... [ 98%]
.....                                                                                                                                                                [ 98%]
nbdime/tests/test_package.py .                                                                                                                                       [ 98%]
nbdime/tests/test_patch.py ...                                                                                                                                       [ 99%]
nbdime/tests/test_prettyprint.py .....................                                                                                                               [ 99%]
nbdime/tests/test_server_extension.py ....................                                                                                                           [ 99%]
nbdime/tests/test_utils.py .....                                                                                                                                     [ 99%]
nbdime/tests/test_web.py ....xxxxx                                                                                                                                   [100%]

================================================================================= FAILURES =================================================================================
_____________________________________________________________________ test_nbdime_js_artifacts_present _____________________________________________________________________

    def test_nbdime_js_artifacts_present():
        from nbdime.webapp import __file__ as webapp_init
        static_folder = os.path.join(os.path.dirname(webapp_init), 'static')
        targets = [os.path.join(static_folder, 'nbdime.js')]
        missing = [t for t in targets if not os.path.exists(t)]
        if missing:
>           raise ValueError(('missing files: %s' % missing))
E           ValueError: missing files: ['/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/webapp/static/nbdime.js']

/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/tests/test_js_artifacts_installed.py:11: ValueError
============================================================================= warnings summary =============================================================================
nbdime/config.py:5
  /home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/config.py:5: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs
  given by the platformdirs library.  To remove this warning and
  see the appropriate new directories, set the environment variable
  `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`.
  The use of platformdirs will be the default in `jupyter_core` v6
    from jupyter_core.paths import jupyter_config_path

nbdime/tests/test_cli_apps.py::test_nbmerge_app_null_side
  /usr/lib/python3.8/site-packages/nbformat/__init__.py:128: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future.
    validate(nb)

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
========================================================================= short test summary info ==========================================================================
SKIPPED [7] nbdime/tests/conftest.py:69: requires mercurial
SKIPPED [1] nbdime/tests/test_merge_notebooks.py:579: unconditional skip
SKIPPED [1] nbdime/tests/test_merge_notebooks.py:700: unconditional skip
SKIPPED [1] nbdime/tests/test_merge_notebooks.py:776: unconditional skip
SKIPPED [1] nbdime/tests/test_merge_notebooks.py:797: unconditional skip
SKIPPED [1] nbdime/tests/test_merge_notebooks.py:827: unconditional skip
SKIPPED [1] nbdime/tests/test_merge_notebooks_inline.py:180: unconditional skip
SKIPPED [1] nbdime/tests/test_merge_notebooks_inline.py:284: unconditional skip
SKIPPED [1] nbdime/tests/test_merge_notebooks_inline.py:331: unconditional skip
XFAIL nbdime/tests/test_decision_tools.py::test_build_diffs_unsorted
XFAIL nbdime/tests/test_diff_json_conversion.py::test_diff_to_json_patch - reason: Not comparing to jsonpatch
XFAIL nbdime/tests/test_merge.py::test_deep_merge_lists_delete_no_conflict__currently_expected_failures - reason: [NOTRUN] flaws in deep diffing of lists, not identifying almost equal sublists
XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_multiline_cell_source_conflict
XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_interleave_cell_add_remove
XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_conflicts_get_diff_indices_shifted
XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_inserts_within_deleted_range
XFAIL nbdime/tests/test_web.py::test_fetch_diff - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_fetch_diff will be ignored
XFAIL nbdime/tests/test_web.py::test_api_diff - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_api_diff will be ignored
XFAIL nbdime/tests/test_web.py::test_fetch_merge - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_fetch_merge will be ignored
XFAIL nbdime/tests/test_web.py::test_api_merge - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_api_merge will be ignored
XFAIL nbdime/tests/test_web.py::test_offline_mathjax - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_offline_mathjax will be ignored
FAILED nbdime/tests/test_js_artifacts_installed.py::test_nbdime_js_artifacts_present - ValueError: missing files: ['/home/tkloczko/rpmbuild/BUILD/nbdime-3.1.1/nbdime/webapp/static/nbdime.js']
=================================================== 1 failed, 5726 passed, 15 skipped, 12 xfailed, 2 warnings in 56.06s ====================================================

Here is list of installed modules in build env

```console Package Version ----------------------------- ----------------- aiohttp 3.8.3 aiosignal 1.3.1 alabaster 0.7.12 anyio 3.6.2 appdirs 1.4.4 argon2-cffi 21.3.0 argon2-cffi-bindings 21.2.0 asttokens 2.2.0 async-timeout 4.0.2 attrs 22.1.0 Babel 2.11.0 backcall 0.2.0 beautifulsoup4 4.11.1 bleach 5.0.0 Brlapi 0.8.3 build 0.9.0 cffi 1.15.1 charset-normalizer 3.0.1 colorama 0.4.6 comm 0.1.0 commonmark 0.9.1 contourpy 1.0.6 cryptography 38.0.4 cssselect 1.1.0 cycler 0.11.0 Cython 0.29.32 debugpy 1.6.4 decorator 5.1.1 defusedxml 0.7.1 distro 1.8.0 dnspython 2.2.1 docutils 0.19 entrypoints 0.4 exceptiongroup 1.0.0 executing 1.2.0 extras 1.0.0 fastjsonschema 2.16.1 fixtures 4.0.0 fonttools 4.38.0 frozenlist 1.3.3 gitdb 4.0.10 GitPython 3.1.27 gpg 1.17.1-unknown html5lib 1.1 idna 3.4 imagesize 1.4.1 importlib-metadata 5.1.0 importlib-resources 5.9.0 iniconfig 1.1.1 ipykernel 6.18.3 ipython 8.6.0 ipython-genutils 0.2.0 jedi 0.18.2 Jinja2 3.1.2 json5 0.9.9 jsonschema 4.17.3 jupyter_client 7.4.8 jupyter_core 5.1.0 jupyter-server 1.23.3 jupyter-server-mathjax 0.2.5 jupyterlab 3.5.1 jupyterlab-pygments 0.1.2 jupyterlab_server 2.16.3 kiwisolver 1.4.4 libcomps 0.1.19 louis 3.23.0 lxml 4.9.1 MarkupSafe 2.1.1 matplotlib 3.6.2 matplotlib-inline 0.1.6 mistune 2.0.4 mock 4.0.3 multidict 6.0.2 nbclassic 0.4.8 nbclient 0.7.2 nbconvert 7.2.6 nbformat 5.7.0 nest-asyncio 1.5.6 notebook 6.5.2 notebook_shim 0.2.2 numpy 1.23.1 olefile 0.46 packaging 21.3 pandocfilters 1.5.0 parso 0.8.3 pbr 5.9.0 pep517 0.13.0 pexpect 4.8.0 pickleshare 0.7.5 Pillow 9.3.0 pip 22.3.1 pkgutil_resolve_name 1.3.10 platformdirs 2.5.2 pluggy 1.0.0 ply 3.11 prometheus-client 0.15.0 prompt-toolkit 3.0.29 psutil 5.9.2 ptyprocess 0.7.0 pure-eval 0.2.2 pycparser 2.21 Pygments 2.13.0 PyGObject 3.42.2 pyOpenSSL 22.0.0 pyparsing 3.0.9 pyrsistent 0.19.2 pytest 7.2.0 python-dateutil 2.8.2 pytz 2022.4 pyzmq 24.0.0 recommonmark 0.7.1 requests 2.28.1 rpm 4.17.0 scour 0.38.2 Send2Trash 1.8.0 setuptools 65.6.3 six 1.16.0 smmap 5.0.0 sniffio 1.2.0 snowballstemmer 2.2.0 soupsieve 2.3.2.post1 Sphinx 5.3.0 sphinx-rtd-theme 1.1.1 sphinxcontrib-applehelp 1.0.2.dev20221204 sphinxcontrib-devhelp 1.0.2.dev20221204 sphinxcontrib-htmlhelp 2.0.0 sphinxcontrib-jsmath 1.0.1.dev20221204 sphinxcontrib-qthelp 1.0.3.dev20221204 sphinxcontrib-serializinghtml 1.1.5 stack-data 0.6.2 terminado 0.15.0 testtools 2.5.0 tinycss2 1.2.1 tomli 2.0.1 tornado 6.2 traitlets 5.4.0 urllib3 1.26.12 wcwidth 0.2.5 webencodings 0.5.1 websocket-client 1.4.2 wheel 0.38.4 yarl 1.8.2 zipp 3.11.0 ```
vidartf commented 1 year ago

The test failure you indicate states that one of the JS build artifacts are missing. If you do a pip install, it will build and make sure that the JS artifacts are copied over as well. Not sure what would be needed to support setup.py build + install.

kloczek commented 9 months ago

The test failure you indicate states that one of the JS build artifacts are missing. If you do a pip install, it will build and make sure that the JS artifacts are copied over as well. Not sure what would be needed to support setup.py build + install.

Just tested 4.0.1 and pytest still is failing in the same unit and I have all modules listed in pyptoject.toml dependencies installed. here is pytest output

```console + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-nbdime-4.0.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-nbdime-4.0.1-2.fc35.x86_64/usr/lib/python3.8/site-packages + /usr/bin/pytest -ra -m 'not network' ==================================================================================== test session starts ==================================================================================== platform linux -- Python 3.8.18, pytest-7.4.3, pluggy-1.3.0 rootdir: /home/tkloczko/rpmbuild/BUILD/nbdime-4.0.1 configfile: pyproject.toml testpaths: nbdime/tests plugins: datadir-1.5.0, regressions-2.5.0, anyio-4.0.0, asyncio-0.21.1, aiohttp-1.0.5, flake8-1.1.1 asyncio: mode=strict collected 6391 items nbdime/tests/test_apply_merge.py .. [ 0%] nbdime/tests/test_args.py ..... [ 0%] nbdime/tests/test_autoresolve.py ..... [ 0%] nbdime/tests/test_cli_apps.py .............................F.ssss [ 0%] nbdime/tests/test_decision_tools.py ...........x. [ 0%] nbdime/tests/test_diff.py .. [ 0%] nbdime/tests/test_diff_format.py .............................................................................................................................. [ 2%] nbdime/tests/test_diff_gitrefs.py .................... [ 3%] nbdime/tests/test_diff_json_conversion.py .x [ 3%] nbdime/tests/test_diff_performance.py . [ 3%] nbdime/tests/test_diff_sequence.py .. [ 3%] nbdime/tests/test_diff_sequence_bruteforce.py . [ 3%] nbdime/tests/test_diff_sequence_difflib.py . [ 3%] nbdime/tests/test_directory_differ.py .... [ 3%] nbdime/tests/test_git_diffdriver.py ........ [ 3%] nbdime/tests/test_git_filter_integration.py ............ [ 3%] nbdime/tests/test_hg_differ.py sss. [ 3%] nbdime/tests/test_js_artifacts_installed.py . [ 3%] nbdime/tests/test_merge.py ....x........... [ 4%] nbdime/tests/test_merge_format.py .............................................................................. [ 5%] nbdime/tests/test_merge_notebooks.py .........................................................................................x.................. [ 6%] nbdime/tests/test_merge_notebooks_inline.py .................................... [ 7%] nbdime/tests/test_myers.py ... [ 7%] nbdime/tests/test_notebook_diff.py .................................................................................................................................................. [ 9%] ..................................................................................................................................................................................... [ 12%] ..................................................................................................................................................................................... [ 15%] ..................................................................................................................................................................................... [ 18%] ..................................................................................................................................................................................... [ 21%] ..................................................................................................................................................................................... [ 24%] ..................................................................................................................................................................................... [ 26%] ..................................................................................................................................................................................... [ 29%] ..................................................................................................................................................................................... [ 32%] ..................................................................................................................................................................................... [ 35%] ..................................................................................................................................................................................... [ 38%] ..................................................................................................................................................................................... [ 41%] ..................................................................................................................................................................................... [ 43%] ..................................................................................................................................................................................... [ 46%] ..................................................................................................................................................................................... [ 49%] ..................................................................................................................................................................................... [ 52%] ..................................................................................................................................................................................... [ 55%] ..................................................................................................................................................................................... [ 58%] ..................................................................................................................................................................................... [ 60%] ..................................................................................................................................................................................... [ 63%] ..................................................................................................................................................................................... [ 66%] ..................................................................................................................................................................................... [ 69%] ..................................................................................................................................................................................... [ 72%] ..................................................................................................................................................................................... [ 75%] ..................................................................................................................................................................................... [ 77%] ..................................................................................................................................................................................... [ 80%] ..................................................................................................................................................................................... [ 83%] ..................................................................................................................................................................................... [ 86%] ..................................................................................................................................................................................... [ 89%] ..................................................................................................................................................................................... [ 92%] ..................................................................................................................................................................................... [ 94%] ..................................................................................................................................................................................... [ 97%] ........................................................................................... [ 99%] nbdime/tests/test_package.py . [ 99%] nbdime/tests/test_patch.py ... [ 99%] nbdime/tests/test_prettyprint.py ..................... [ 99%] nbdime/tests/test_server_extension.py ..........ssssssssss [ 99%] nbdime/tests/test_utils.py ..... [ 99%] nbdime/tests/test_web.py ....xxxx [100%] ========================================================================================= FAILURES ========================================================================================== _____________________________________________________________________________________ test_git_difftool _____________________________________________________________________________________ self = def _new_conn(self): """Establish a socket connection and set nodelay settings on it. :return: New socket connection. """ extra_kw = {} if self.source_address: extra_kw["source_address"] = self.source_address if self.socket_options: extra_kw["socket_options"] = self.socket_options try: > conn = connection.create_connection( (self._dns_host, self.port), self.timeout, **extra_kw ) /usr/lib/python3.8/site-packages/urllib3/connection.py:174: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/urllib3/util/connection.py:95: in create_connection raise err _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ address = ('127.0.0.1', 62020), timeout = None, source_address = None, socket_options = [(6, 1, 1)] def create_connection( address, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, source_address=None, socket_options=None, ): """Connect to *address* and return the socket object. Convenience function. Connect to *address* (a 2-tuple ``(host, port)``) and return the socket object. Passing the optional *timeout* parameter will set the timeout on the socket instance before attempting to connect. If no *timeout* is supplied, the global default timeout setting returned by :func:`socket.getdefaulttimeout` is used. If *source_address* is set it must be a tuple of (host, port) for the socket to bind as a source address before making the connection. An host of '' or port 0 tells the OS to use the default. """ host, port = address if host.startswith("["): host = host.strip("[]") err = None # Using the value from allowed_gai_family() in the context of getaddrinfo lets # us select whether to work with IPv4 DNS records, IPv6 records, or both. # The original create_connection function always returns all records. family = allowed_gai_family() try: host.encode("idna") except UnicodeError: return six.raise_from( LocationParseError(u"'%s', label empty or too long" % host), None ) for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM): af, socktype, proto, canonname, sa = res sock = None try: sock = socket.socket(af, socktype, proto) # If provided, set socket level options before connecting. _set_socket_options(sock, socket_options) if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT: sock.settimeout(timeout) if source_address: sock.bind(source_address) > sock.connect(sa) E ConnectionRefusedError: [Errno 111] Connection refused /usr/lib/python3.8/site-packages/urllib3/util/connection.py:85: ConnectionRefusedError During handling of the above exception, another exception occurred: self = , method = 'GET', url = '/', body = None headers = {'User-Agent': 'python-requests/2.31.0', 'Accept-Encoding': 'gzip, deflate', 'Accept': '*/*', 'Connection': 'keep-alive'} retries = Retry(total=0, connect=None, read=False, redirect=None, status=None), redirect = False, assert_same_host = False, timeout = Timeout(connect=None, read=None, total=None) pool_timeout = None, release_conn = False, chunked = False, body_pos = None, response_kw = {'decode_content': False, 'preload_content': False} parsed_url = Url(scheme=None, auth=None, host=None, port=None, path='/', query=None, fragment=None), destination_scheme = None, conn = None, release_this_conn = True http_tunnel_required = False, err = None, clean_exit = False def urlopen( self, method, url, body=None, headers=None, retries=None, redirect=True, assert_same_host=True, timeout=_Default, pool_timeout=None, release_conn=None, chunked=False, body_pos=None, **response_kw ): """ Get a connection from the pool and perform an HTTP request. This is the lowest level call for making a request, so you'll need to specify all the raw details. .. note:: More commonly, it's appropriate to use a convenience method provided by :class:`.RequestMethods`, such as :meth:`request`. .. note:: `release_conn` will only behave as expected if `preload_content=False` because we want to make `preload_content=False` the default behaviour someday soon without breaking backwards compatibility. :param method: HTTP request method (such as GET, POST, PUT, etc.) :param url: The URL to perform the request on. :param body: Data to send in the request body, either :class:`str`, :class:`bytes`, an iterable of :class:`str`/:class:`bytes`, or a file-like object. :param headers: Dictionary of custom headers to send, such as User-Agent, If-None-Match, etc. If None, pool headers are used. If provided, these headers completely replace any pool-specific headers. :param retries: Configure the number of retries to allow before raising a :class:`~urllib3.exceptions.MaxRetryError` exception. Pass ``None`` to retry until you receive a response. Pass a :class:`~urllib3.util.retry.Retry` object for fine-grained control over different types of retries. Pass an integer number to retry connection errors that many times, but no other types of errors. Pass zero to never retry. If ``False``, then retries are disabled and any exception is raised immediately. Also, instead of raising a MaxRetryError on redirects, the redirect response will be returned. :type retries: :class:`~urllib3.util.retry.Retry`, False, or an int. :param redirect: If True, automatically handle redirects (status codes 301, 302, 303, 307, 308). Each redirect counts as a retry. Disabling retries will disable redirect, too. :param assert_same_host: If ``True``, will make sure that the host of the pool requests is consistent else will raise HostChangedError. When ``False``, you can use the pool on an HTTP proxy and request foreign hosts. :param timeout: If specified, overrides the default timeout for this one request. It may be a float (in seconds) or an instance of :class:`urllib3.util.Timeout`. :param pool_timeout: If set and the pool is set to block=True, then this method will block for ``pool_timeout`` seconds and raise EmptyPoolError if no connection is available within the time period. :param release_conn: If False, then the urlopen call will not release the connection back into the pool once a response is received (but will release if you read the entire contents of the response such as when `preload_content=True`). This is useful if you're not preloading the response's content immediately. You will need to call ``r.release_conn()`` on the response ``r`` to return the connection back into the pool. If None, it takes the value of ``response_kw.get('preload_content', True)``. :param chunked: If True, urllib3 will send the body using chunked transfer encoding. Otherwise, urllib3 will send the body using the standard content-length form. Defaults to False. :param int body_pos: Position to seek to in file-like body in the event of a retry or redirect. Typically this won't need to be set because urllib3 will auto-populate the value when needed. :param \\**response_kw: Additional parameters are passed to :meth:`urllib3.response.HTTPResponse.from_httplib` """ parsed_url = parse_url(url) destination_scheme = parsed_url.scheme if headers is None: headers = self.headers if not isinstance(retries, Retry): retries = Retry.from_int(retries, redirect=redirect, default=self.retries) if release_conn is None: release_conn = response_kw.get("preload_content", True) # Check host if assert_same_host and not self.is_same_host(url): raise HostChangedError(self, url, retries) # Ensure that the URL we're connecting to is properly encoded if url.startswith("/"): url = six.ensure_str(_encode_target(url)) else: url = six.ensure_str(parsed_url.url) conn = None # Track whether `conn` needs to be released before # returning/raising/recursing. Update this variable if necessary, and # leave `release_conn` constant throughout the function. That way, if # the function recurses, the original value of `release_conn` will be # passed down into the recursive call, and its value will be respected. # # See issue #651 [1] for details. # # [1] release_this_conn = release_conn http_tunnel_required = connection_requires_http_tunnel( self.proxy, self.proxy_config, destination_scheme ) # Merge the proxy headers. Only done when not using HTTP CONNECT. We # have to copy the headers dict so we can safely change it without those # changes being reflected in anyone else's copy. if not http_tunnel_required: headers = headers.copy() headers.update(self.proxy_headers) # Must keep the exception bound to a separate variable or else Python 3 # complains about UnboundLocalError. err = None # Keep track of whether we cleanly exited the except block. This # ensures we do proper cleanup in finally. clean_exit = False # Rewind body position, if needed. Record current position # for future rewinds in the event of a redirect/retry. body_pos = set_file_position(body, body_pos) try: # Request a connection from the queue. timeout_obj = self._get_timeout(timeout) conn = self._get_conn(timeout=pool_timeout) conn.timeout = timeout_obj.connect_timeout is_new_proxy_conn = self.proxy is not None and not getattr( conn, "sock", None ) if is_new_proxy_conn and http_tunnel_required: self._prepare_proxy(conn) # Make the request on the httplib connection object. > httplib_response = self._make_request( conn, method, url, timeout=timeout_obj, body=body, headers=headers, chunked=chunked, ) /usr/lib/python3.8/site-packages/urllib3/connectionpool.py:715: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/urllib3/connectionpool.py:416: in _make_request conn.request(method, url, **httplib_request_kw) /usr/lib/python3.8/site-packages/urllib3/connection.py:244: in request super(HTTPConnection, self).request(method, url, body=body, headers=headers) /usr/lib64/python3.8/http/client.py:1256: in request self._send_request(method, url, body, headers, encode_chunked) /usr/lib64/python3.8/http/client.py:1302: in _send_request self.endheaders(body, encode_chunked=encode_chunked) /usr/lib64/python3.8/http/client.py:1251: in endheaders self._send_output(message_body, encode_chunked=encode_chunked) /usr/lib64/python3.8/http/client.py:1011: in _send_output self.send(msg) /usr/lib64/python3.8/http/client.py:951: in send self.connect() /usr/lib/python3.8/site-packages/urllib3/connection.py:205: in connect conn = self._new_conn() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = def _new_conn(self): """Establish a socket connection and set nodelay settings on it. :return: New socket connection. """ extra_kw = {} if self.source_address: extra_kw["source_address"] = self.source_address if self.socket_options: extra_kw["socket_options"] = self.socket_options try: conn = connection.create_connection( (self._dns_host, self.port), self.timeout, **extra_kw ) except SocketTimeout: raise ConnectTimeoutError( self, "Connection to %s timed out. (connect timeout=%s)" % (self.host, self.timeout), ) except SocketError as e: > raise NewConnectionError( self, "Failed to establish a new connection: %s" % e ) E urllib3.exceptions.NewConnectionError: : Failed to establish a new connection: [Errno 111] Connection refused /usr/lib/python3.8/site-packages/urllib3/connection.py:186: NewConnectionError During handling of the above exception, another exception occurred: self = , request = , stream = False, timeout = Timeout(connect=None, read=None, total=None), verify = True cert = None, proxies = OrderedDict() def send( self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None ): """Sends PreparedRequest object. Returns Response object. :param request: The :class:`PreparedRequest ` being sent. :param stream: (optional) Whether to stream the request content. :param timeout: (optional) How long to wait for the server to send data before giving up, as a float, or a :ref:`(connect timeout, read timeout) ` tuple. :type timeout: float or tuple or urllib3 Timeout object :param verify: (optional) Either a boolean, in which case it controls whether we verify the server's TLS certificate, or a string, in which case it must be a path to a CA bundle to use :param cert: (optional) Any user-provided SSL certificate to be trusted. :param proxies: (optional) The proxies dictionary to apply to the request. :rtype: requests.Response """ try: conn = self.get_connection(request.url, proxies) except LocationValueError as e: raise InvalidURL(e, request=request) self.cert_verify(conn, request.url, verify, cert) url = self.request_url(request, proxies) self.add_headers( request, stream=stream, timeout=timeout, verify=verify, cert=cert, proxies=proxies, ) chunked = not (request.body is None or "Content-Length" in request.headers) if isinstance(timeout, tuple): try: connect, read = timeout timeout = TimeoutSauce(connect=connect, read=read) except ValueError: raise ValueError( f"Invalid timeout {timeout}. Pass a (connect, read) timeout tuple, " f"or a single float to set both timeouts to the same value." ) elif isinstance(timeout, TimeoutSauce): pass else: timeout = TimeoutSauce(connect=timeout, read=timeout) try: > resp = conn.urlopen( method=request.method, url=url, body=request.body, headers=request.headers, redirect=False, assert_same_host=False, preload_content=False, decode_content=False, retries=self.max_retries, timeout=timeout, chunked=chunked, ) /usr/lib/python3.8/site-packages/requests/adapters.py:486: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/urllib3/connectionpool.py:799: in urlopen retries = retries.increment( _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = Retry(total=0, connect=None, read=False, redirect=None, status=None), method = 'GET', url = '/', response = None error = NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused') _pool = , _stacktrace = def increment( self, method=None, url=None, response=None, error=None, _pool=None, _stacktrace=None, ): """Return a new Retry object with incremented retry counters. :param response: A response object, or None, if the server did not return a response. :type response: :class:`~urllib3.response.HTTPResponse` :param Exception error: An error encountered during the request, or None if the response was received successfully. :return: A new ``Retry`` object. """ if self.total is False and error: # Disabled, indicate to re-raise the error. raise six.reraise(type(error), error, _stacktrace) total = self.total if total is not None: total -= 1 connect = self.connect read = self.read redirect = self.redirect status_count = self.status other = self.other cause = "unknown" status = None redirect_location = None if error and self._is_connection_error(error): # Connect retry? if connect is False: raise six.reraise(type(error), error, _stacktrace) elif connect is not None: connect -= 1 elif error and self._is_read_error(error): # Read retry? if read is False or not self._is_method_retryable(method): raise six.reraise(type(error), error, _stacktrace) elif read is not None: read -= 1 elif error: # Other retry? if other is not None: other -= 1 elif response and response.get_redirect_location(): # Redirect retry? if redirect is not None: redirect -= 1 cause = "too many redirects" redirect_location = response.get_redirect_location() status = response.status else: # Incrementing because of a server error like a 500 in # status_forcelist and the given method is in the allowed_methods cause = ResponseError.GENERIC_ERROR if response and response.status: if status_count is not None: status_count -= 1 cause = ResponseError.SPECIFIC_ERROR.format(status_code=response.status) status = response.status history = self.history + ( RequestHistory(method, url, error, status, redirect_location), ) new_retry = self.new( total=total, connect=connect, read=read, redirect=redirect, status=status_count, other=other, history=history, ) if new_retry.is_exhausted(): > raise MaxRetryError(_pool, url, error or ResponseError(cause)) E urllib3.exceptions.MaxRetryError: HTTPConnectionPool(host='127.0.0.1', port=62020): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')) /usr/lib/python3.8/site-packages/urllib3/util/retry.py:592: MaxRetryError During handling of the above exception, another exception occurred: url = 'http://127.0.0.1:62020', interval = 0.1, check = . at 0x7f31f7415f70> def wait_up(url, interval=0.1, check=None): while True: try: > r = requests.get(url) /home/tkloczko/rpmbuild/BUILD/nbdime-4.0.1/nbdime/tests/utils.py:172: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/requests/api.py:73: in get return request("get", url, params=params, **kwargs) /usr/lib/python3.8/site-packages/requests/api.py:59: in request return session.request(method=method, url=url, **kwargs) /usr/lib/python3.8/site-packages/requests/sessions.py:589: in request resp = self.send(prep, **send_kwargs) /usr/lib/python3.8/site-packages/requests/sessions.py:703: in send r = adapter.send(request, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = , request = , stream = False, timeout = Timeout(connect=None, read=None, total=None), verify = True cert = None, proxies = OrderedDict() def send( self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None ): """Sends PreparedRequest object. Returns Response object. :param request: The :class:`PreparedRequest ` being sent. :param stream: (optional) Whether to stream the request content. :param timeout: (optional) How long to wait for the server to send data before giving up, as a float, or a :ref:`(connect timeout, read timeout) ` tuple. :type timeout: float or tuple or urllib3 Timeout object :param verify: (optional) Either a boolean, in which case it controls whether we verify the server's TLS certificate, or a string, in which case it must be a path to a CA bundle to use :param cert: (optional) Any user-provided SSL certificate to be trusted. :param proxies: (optional) The proxies dictionary to apply to the request. :rtype: requests.Response """ try: conn = self.get_connection(request.url, proxies) except LocationValueError as e: raise InvalidURL(e, request=request) self.cert_verify(conn, request.url, verify, cert) url = self.request_url(request, proxies) self.add_headers( request, stream=stream, timeout=timeout, verify=verify, cert=cert, proxies=proxies, ) chunked = not (request.body is None or "Content-Length" in request.headers) if isinstance(timeout, tuple): try: connect, read = timeout timeout = TimeoutSauce(connect=connect, read=read) except ValueError: raise ValueError( f"Invalid timeout {timeout}. Pass a (connect, read) timeout tuple, " f"or a single float to set both timeouts to the same value." ) elif isinstance(timeout, TimeoutSauce): pass else: timeout = TimeoutSauce(connect=timeout, read=timeout) try: resp = conn.urlopen( method=request.method, url=url, body=request.body, headers=request.headers, redirect=False, assert_same_host=False, preload_content=False, decode_content=False, retries=self.max_retries, timeout=timeout, chunked=chunked, ) except (ProtocolError, OSError) as err: raise ConnectionError(err, request=request) except MaxRetryError as e: if isinstance(e.reason, ConnectTimeoutError): # TODO: Remove this in 3.0.0: see #2811 if not isinstance(e.reason, NewConnectionError): raise ConnectTimeout(e, request=request) if isinstance(e.reason, ResponseError): raise RetryError(e, request=request) if isinstance(e.reason, _ProxyError): raise ProxyError(e, request=request) if isinstance(e.reason, _SSLError): # This branch is for urllib3 v1.22 and later. raise SSLError(e, request=request) > raise ConnectionError(e, request=request) E requests.exceptions.ConnectionError: HTTPConnectionPool(host='127.0.0.1', port=62020): Max retries exceeded with url: / (Caused by NewConnectionError(': Failed to establish a new connection: [Errno 111] Connection refused')) /usr/lib/python3.8/site-packages/requests/adapters.py:519: ConnectionError During handling of the above exception, another exception occurred: git_repo = '/tmp/pytest-of-tkloczko/pytest-23/test_git_difftool0/repo', unique_port = 62020, popen_with_terminator = .run_process at 0x7f31f7415af0> @pytest.mark.timeout(timeout=3*WEB_TEST_TIMEOUT) def test_git_difftool(git_repo, unique_port, popen_with_terminator): gitdifftool.main(['config', '--enable']) cmd = get_output('git config --get --local difftool.nbdime.cmd').strip() # pick a non-random port so we can connect later, and avoid opening a browser port = unique_port cmd = cmd + ' --port=%i --browser=disabled' % port call(['git', 'config', 'difftool.nbdime.cmd', cmd]) # avoid global diff driver config from disabling difftool: with open('.gitattributes', 'w') as f: f.write('*.ipynb\tdiff=notnbdime') process = popen_with_terminator(['git', 'difftool', '--tool=nbdime', 'base']) # 3 is the number of notebooks in this diff url = 'http://127.0.0.1:%i' % port for _ in range(3): > wait_up(url, check=lambda: process.poll() is None) /home/tkloczko/rpmbuild/BUILD/nbdime-4.0.1/nbdime/tests/test_cli_apps.py:629: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ url = 'http://127.0.0.1:62020', interval = 0.1, check = . at 0x7f31f7415f70> def wait_up(url, interval=0.1, check=None): while True: try: r = requests.get(url) except Exception: if check: > assert check() E AssertionError /home/tkloczko/rpmbuild/BUILD/nbdime-4.0.1/nbdime/tests/utils.py:175: AssertionError ----------------------------------------------------------------------------------- Captured stdout setup ----------------------------------------------------------------------------------- Initialized empty Git repository in /tmp/pytest-of-tkloczko/pytest-23/test_git_difftool0/repo/.git/ [master (root-commit) 5a6199f] init base branch 3 files changed, 287 insertions(+) create mode 100644 diff.ipynb create mode 100644 merge-conflict.ipynb create mode 100644 merge-no-conflict.ipynb [local 63b4fdd] create local branch 3 files changed, 27 insertions(+), 26 deletions(-) [remote-conflict f317470] create remote with conflict 1 file changed, 2 insertions(+), 2 deletions(-) [remote-no-conflict f6ad219] create remote with no conflict 1 file changed, 2 insertions(+), 2 deletions(-) ----------------------------------------------------------------------------------- Captured stderr setup ----------------------------------------------------------------------------------- Switched to a new branch 'base' Switched to a new branch 'local' Switched to a new branch 'remote-conflict' Switched to a new branch 'remote-no-conflict' Switched to branch 'local' ----------------------------------------------------------------------------------- Captured stderr call ------------------------------------------------------------------------------------ error: cannot run git-difftool--helper: No such file or directory fatal: external diff died, stopping at diff.ipynb ===================================================================================== warnings summary ====================================================================================== nbdime/tests/conftest.py:18 nbdime/tests/conftest.py:18 /home/tkloczko/rpmbuild/BUILD/nbdime-4.0.1/nbdime/tests/conftest.py:18: DeprecationWarning: jsonschema.RefResolver is deprecated as of v4.18.0, in favor of the https://github.com/python-jsonschema/referencing library, which provides more compliant referencing behavior as well as more flexible APIs for customization. A future release will remove RefResolver. Please file a feature request (on referencing) if you are missing an API for the kind of customization you need. from jsonschema import RefResolver nbdime/config.py:4 /home/tkloczko/rpmbuild/BUILD/nbdime-4.0.1/nbdime/config.py:4: DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs given by the platformdirs library. To remove this warning and see the appropriate new directories, set the environment variable `JUPYTER_PLATFORM_DIRS=1` and then run `jupyter --paths`. The use of platformdirs will be the default in `jupyter_core` v6 from jupyter_core.paths import jupyter_config_path nbdime/tests/test_cli_apps.py::test_nbmerge_app_null_side /usr/lib/python3.8/site-packages/nbformat/__init__.py:129: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future. validate(nb) nbdime/tests/test_diff_format.py: 3 warnings nbdime/tests/test_notebook_diff.py: 216 warnings /usr/lib/python3.8/site-packages/nbformat/__init__.py:93: MissingIDFieldWarning: Code cell is missing an id field, this will become a hard error in future nbformat versions. You may want to use `normalize()` on your notebooks before validations (available since nbformat 5.1.4). Previous versions of nbformat are fixing this issue transparently, and will stop doing so in the future. validate(nb) -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html ================================================================================== short test summary info ================================================================================== SKIPPED [1] nbdime/tests/test_cli_apps.py:690: requires mercurial SKIPPED [1] nbdime/tests/test_cli_apps.py:697: requires mercurial SKIPPED [1] nbdime/tests/test_cli_apps.py:729: requires mercurial SKIPPED [1] nbdime/tests/test_cli_apps.py:757: requires mercurial SKIPPED [1] nbdime/tests/test_hg_differ.py:70: requires mercurial SKIPPED [1] nbdime/tests/test_hg_differ.py:90: requires mercurial SKIPPED [1] nbdime/tests/test_hg_differ.py:110: requires mercurial SKIPPED [1] nbdime/tests/test_server_extension.py:32: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:45: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:58: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:65: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:87: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:103: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:144: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:183: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:212: Do not test with notebook<=6 + jupyter_server>=2 SKIPPED [1] nbdime/tests/test_server_extension.py:224: Do not test with notebook<=6 + jupyter_server>=2 XFAIL nbdime/tests/test_decision_tools.py::test_build_diffs_unsorted XFAIL nbdime/tests/test_diff_json_conversion.py::test_diff_to_json_patch - reason: Not comparing to jsonpatch XFAIL nbdime/tests/test_merge.py::test_deep_merge_lists_delete_no_conflict__currently_expected_failures - reason: [NOTRUN] flaws in deep diffing of lists, not identifying almost equal sublists XFAIL nbdime/tests/test_merge_notebooks.py::test_merge_inserts_within_deleted_range XFAIL nbdime/tests/test_web.py::test_fetch_diff - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_fetch_diff will be ignored XFAIL nbdime/tests/test_web.py::test_api_diff - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_api_diff will be ignored XFAIL nbdime/tests/test_web.py::test_fetch_merge - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_fetch_merge will be ignored XFAIL nbdime/tests/test_web.py::test_api_merge - reason: [NOTRUN] yield tests were removed in pytest 4.0 - test_api_merge will be ignored FAILED nbdime/tests/test_cli_apps.py::test_git_difftool - AssertionError =========================================================== 1 failed, 6365 passed, 17 skipped, 8 xfailed, 223 warnings in 42.64s ============================================================ ```
vidartf commented 9 months ago

Just tested 4.0.1 and pytest still is failing in the same unit [...]

Hi, and thanks for your feedback. You say it is failing in the same unit, but it seems to me that it is a completely different test that is failing this time? Do you perhaps have something else running on the port that the unit test in question is trying to use?

kloczek commented 9 months ago

Do you perhaps have something else running on the port that the unit test in question is trying to use?

Not possible. Im building all my rpm packages inside freshy spawned LXC zone in which ae only installed build dependencies listed in rpm spec file.

kloczek commented 9 months ago

The test failure you indicate states that one of the JS build artifacts are missing

npm during build shows that everything has been installed. However it shows one repeating warnig about one file

```console + /usr/bin/python3 -sBm build -w --no-isolation * Getting build dependencies for wheel... running egg_info creating nbdime.egg-info writing nbdime.egg-info/PKG-INFO writing dependency_links to nbdime.egg-info/dependency_links.txt writing entry points to nbdime.egg-info/entry_points.txt writing requirements to nbdime.egg-info/requires.txt writing top-level names to nbdime.egg-info/top_level.txt writing manifest file 'nbdime.egg-info/SOURCES.txt' reading manifest file 'nbdime.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' /usr/lib/python3.8/site-packages/setuptools/config/setupcfg.py:293: _DeprecatedConfig: Deprecated config in `setup.cfg` !! ******************************************************************************** The license_file parameter is deprecated, use license_files instead. By 2023-Oct-30, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details. ******************************************************************************** !! parsed = self.parsers.get(option_name, lambda x: x)(value) warning: no previously-included files found matching 'docs/#*' no previously-included directories found matching 'docs/build' no previously-included directories found matching 'docs/gh-pages' no previously-included directories found matching 'docs/dist' no previously-included directories found matching 'packages/*/coverage' no previously-included directories found matching 'packages/*/lib' no previously-included directories found matching 'packages/*/build' no previously-included directories found matching 'packages/*/node_modules' no previously-included directories found matching 'packages/*/test/build' warning: no directories found matching 'nbdime/labextension' warning: no previously-included files matching '*~' found anywhere in distribution warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*.pyo' found anywhere in distribution warning: no previously-included files matching '.git' found anywhere in distribution warning: no previously-included files matching '.ipynb_checkpoints' found anywhere in distribution adding license file 'LICENSE.md' writing manifest file 'nbdime.egg-info/SOURCES.txt' * Building wheel... running bdist_wheel running js Installing build dependencies with npm. This may take a while... > npm install npm WARN deprecated crypto@1.0.1: This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in. npm WARN deprecated readdir-scoped-modules@1.1.0: This functionality has been moved to @npmcli/fs npm WARN deprecated @npmcli/move-file@1.1.2: This functionality has been moved to @npmcli/fs npm WARN deprecated @npmcli/ci-detect@1.4.0: this package has been deprecated, use `ci-info` instead npm WARN deprecated read-package-tree@5.3.1: The functionality that this package provided is now in @npmcli/arborist npm WARN deprecated har-validator@5.1.5: this library is no longer supported npm WARN deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 > install > lerna bootstrap --hoist lerna notice cli v4.0.0 lerna info versioning independent lerna info Bootstrapping 3 packages lerna info Installing external dependencies lerna info hoist Installing hoisted dependencies into root lerna info hoist Pruning hoisted dependencies lerna info hoist Finished pruning hoisted dependencies lerna info hoist Finished bootstrapping root lerna info Symlinking packages and binaries lerna success Bootstrapped 3 packages added 889 packages, and audited 890 packages in 2m 126 packages are looking for funding run `npm fund` for details 67 vulnerabilities (65 moderate, 1 high, 1 critical) To address issues that do not require attention, run: npm audit fix To address all issues (including breaking changes), run: npm audit fix --force Run `npm audit` for details. > npm run build > build > lerna run build lerna notice cli v4.0.0 lerna info versioning independent lerna info Executing command in 3 packages: "npm run build" lerna info run Ran npm script 'build' in 'nbdime' in 5.5s: > nbdime@6.2.0 build > tsc --project . && node scripts/copy-files.js lerna info run Ran npm script 'build' in 'nbdime-jupyterlab' in 13.0s: > nbdime-jupyterlab@2.2.0 build > npm run build:lib && npm run build:labextension > nbdime-jupyterlab@2.2.0 build:lib > tsc --build > nbdime-jupyterlab@2.2.0 build:labextension > npm run build:labextension:source && npm run build:labextension:prebuilt > nbdime-jupyterlab@2.2.0 build:labextension:source > rimraf dist && mkdirp dist && cd dist && npm pack .. nbdime-jupyterlab-2.2.0.tgz > nbdime-jupyterlab@2.2.0 build:labextension:prebuilt > rimraf ../../nbdime/labextension && mkdirp ../../nbdime/labextension && jupyter labextension build . asset 568.20a60a817c800d7ff1cf.js?v=20a60a817c800d7ff1cf 141 KiB [emitted] [immutable] [minimized] asset 380.afdff9238b9ac447550b.js?v=afdff9238b9ac447550b 20.7 KiB [emitted] [immutable] [minimized] (id hint: vendors) asset third-party-licenses.json 10.1 KiB [emitted] asset remoteEntry.42b7c07a01e9b395f8d9.js 7.63 KiB [emitted] [immutable] [minimized] (name: nbdime-jupyterlab) runtime modules 19.1 KiB 13 modules cacheable modules 400 KiB modules by path ../nbdime/lib/ 312 KiB 53 modules modules by path ../../node_modules/ 64 KiB 18 modules modules by path ./ 23.7 KiB modules by path ./lib/*.js 18.7 KiB 5 modules modules by path ./style/*.css 5.01 KiB 2 modules consume-shared-module modules 672 bytes modules by path consume shared module (default) @jupyterlab/ 378 bytes 9 modules modules by path consume shared module (default) @lumino/ 252 bytes consume shared module (default) @lumino/algorithm@^1.9.0 (singleton) 42 bytes [built] [code generated] + 5 modules consume shared module (default) codemirror@^5.0.0 (singleton) 42 bytes [built] [code generated] container entry 42 bytes [built] [code generated] provide shared module (default) nbdime-jupyterlab@2.2.0 = ./lib/index.js 42 bytes [built] [code generated] WARNING in license-webpack-plugin: could not find any license file for nbdime. Use the licenseTextOverrides option to add the license text if desired. WARNING in license-webpack-plugin: could not find any license file for @jupyterlab/coreutils. Use the licenseTextOverrides option to add the license text if desired. WARNING in license-webpack-plugin: could not find any license file for jsonify. Use the licenseTextOverrides option to add the license text if desired. webpack 5.88.1 compiled with 3 warnings in 2588 ms lerna info run Ran npm script 'build' in 'nbdime-webapp' in 39.9s: > build > webpack --mode=production assets by path ../../../packages/webapp/lib/ 9.86 KiB assets by path ../../../packages/webapp/lib/app/ 8.7 KiB 16 assets asset ../../../packages/webapp/lib/index.d.ts 715 bytes [emitted] asset ../../../packages/webapp/lib/index.d.ts.map 471 bytes [emitted] assets by info 2.79 MiB [immutable] assets by path *.svg 1.73 MiB 3 assets assets by path *.eot 363 KiB 3 assets assets by path *.ttf 362 KiB 3 assets assets by path *.woff 203 KiB 3 assets assets by path *.woff2 164 KiB 3 assets assets by path *.js 4.13 MiB asset nbdime.js 3.71 MiB [emitted] [minimized] [big] (name: main) 2 related assets asset 569.nbdime.js 423 KiB [emitted] [minimized] [big] (id hint: vendors) 1 related asset asset 106.nbdime.js 3.46 KiB [emitted] [minimized] 1 related asset orphan modules 2.11 MiB [orphan] 353 modules runtime modules 6.32 KiB 12 modules javascript modules 7.75 MiB 721 modules asset modules 79.9 KiB (javascript) 2.79 MiB (asset) modules by path ../../node_modules/@jupyterlab/ 77.3 KiB 92 modules modules by path ../../node_modules/@fortawesome/fontawesome-free/ 630 bytes (javascript) 2.79 MiB (asset) 15 modules modules by mime type image/svg+xml 1.36 KiB 4 modules modules by mime type image/png 608 bytes 2 modules json modules 63.2 KiB modules by path ../../node_modules/htmlparser2/ 30 KiB 4 modules modules by path ../../node_modules/dom-serializer/ 30 KiB 4 modules modules by path ../../node_modules/ajv/lib/ 3.12 KiB 2 modules WARNING in ../../node_modules/@jupyterlab/apputils/lib/clipboard.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/clipboard.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/clipboard.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 7:0-28 7:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/collapse.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/collapse.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/collapse.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/commandlinker.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/commandlinker.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/commandlinker.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 9:0-32 9:0-32 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/commandpalette.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/commandpalette.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/commandpalette.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 10:0-33 10:0-33 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/dialog.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/dialog.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/dialog.tsx' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 11:0-25 11:0-25 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/domutils.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/domutils.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/domutils.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 12:0-27 12:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/hoverbox.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/hoverbox.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/hoverbox.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 13:0-27 13:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/iframe.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/iframe.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/iframe.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 14:0-25 14:0-25 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/index.ts' @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/inputdialog.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/inputdialog.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/inputdialog.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 15:0-30 15:0-30 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/kernelstatuses.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/kernelstatuses.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/kernelstatuses.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 32:0-33 32:0-33 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/mainareawidget.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/mainareawidget.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/mainareawidget.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 16:0-33 16:0-33 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/menufactory.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/menufactory.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/menufactory.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 17:0-30 17:0-30 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/notification.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/notification.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/notification.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 18:0-31 18:0-31 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/printing.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/printing.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/printing.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 19:0-27 19:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/sanitizer.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/sanitizer.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/sanitizer.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 20:0-28 20:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/search.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/search.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/search.tsx' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 21:0-25 21:0-25 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/sessioncontext.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/sessioncontext.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/sessioncontext.tsx' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 22:0-33 22:0-33 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/spinner.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/spinner.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/spinner.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 23:0-26 23:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/splash.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/splash.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/splash.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 24:0-25 24:0-25 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/styling.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/styling.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/styling.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 25:0-26 25:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/thememanager.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/thememanager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/thememanager.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 26:0-31 26:0-31 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/tokens.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 27:0-25 27:0-25 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/toolbar/factory.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/factory.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/factory.ts' @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 1:0-26 1:0-26 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/index.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/toolbar/registry.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/registry.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/registry.ts' @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 2:0-27 2:0-27 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/toolbar/widget.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/widget.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/toolbar/widget.tsx' @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 3:0-25 3:0-25 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/vdom.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/vdom.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/vdom.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 29:0-23 29:0-23 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/widgettracker.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/widgettracker.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/apputils/lib/windowresolver.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/windowresolver.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/apputils/src/windowresolver.ts' @ ../../node_modules/@jupyterlab/apputils/lib/index.js 31:0-33 31:0-33 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/editor.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/editor.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/editor.ts' @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/factory.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/factory.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/factory.ts' @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 10:0-26 10:0-26 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/index.ts' @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/jsoneditor.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/jsoneditor.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/jsoneditor.ts' @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 8:0-29 8:0-29 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/mimetype.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/mimetype.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/mimetype.ts' @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 11:0-27 11:0-27 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/tokens.ts' @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 12:0-25 12:0-25 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codeeditor/lib/widget.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/widget.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codeeditor/src/widget.ts' @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js 9:0-25 9:0-25 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/codemirror-ipython.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/codemirror-ipython.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/codemirror-ipython.ts' @ ../../node_modules/@jupyterlab/codemirror/lib/mode.js 19:0-30 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 12:0-23 12:0-23 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/codemirror-ipythongfm.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/codemirror-ipythongfm.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/codemirror-ipythongfm.ts' @ ../../node_modules/@jupyterlab/codemirror/lib/mode.js 20:0-33 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 12:0-23 12:0-23 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/editor.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/editor.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/editor.ts' @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 9:0-25 9:0-25 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/factory.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/factory.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/factory.ts' @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 7:0-52 10:0-26 10:0-26 19:24-47 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/index.ts' @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/mimetype.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/mimetype.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/mimetype.ts' @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 8:0-55 11:0-27 11:0-27 20:25-50 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/mode.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/mode.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/mode.ts' @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 12:0-23 12:0-23 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/syntaxstatus.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/syntaxstatus.tsx' @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/codemirror/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/codemirror/src/tokens.ts' @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 14:0-25 14:0-25 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/activitymonitor.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/activitymonitor.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/activitymonitor.ts' @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 19:13-41 @ ./src/app/rendermime.ts 6:20-52 @ ./src/app/diff.ts 15:21-44 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/index.ts' @ ./src/app/rendermime.ts 6:20-52 @ ./src/app/diff.ts 15:21-44 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/interfaces.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/interfaces.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/interfaces.ts' @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 20:13-36 @ ./src/app/rendermime.ts 6:20-52 @ ./src/app/diff.ts 15:21-44 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/markdowncodeblocks.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/markdowncodeblocks.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/markdowncodeblocks.ts' @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 21:13-44 @ ./src/app/rendermime.ts 6:20-52 @ ./src/app/diff.ts 15:21-44 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/pageconfig.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/pageconfig.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/pageconfig.ts' @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 22:13-36 @ ./src/app/rendermime.ts 6:20-52 @ ./src/app/diff.ts 15:21-44 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/path.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/path.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/path.ts' @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 23:13-30 @ ./src/app/rendermime.ts 6:20-52 @ ./src/app/diff.ts 15:21-44 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/text.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/text.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/text.ts' @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 24:13-30 @ ./src/app/rendermime.ts 6:20-52 @ ./src/app/diff.ts 15:21-44 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/time.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/time.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/time.ts' @ ../../node_modules/@jupyterlab/coreutils/lib/index.js 25:13-30 @ ./src/app/rendermime.ts 6:20-52 @ ./src/app/diff.ts 15:21-44 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/coreutils/lib/url.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/url.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/coreutils/src/url.ts' @ ./src/app/common.ts 30:14-54 @ ./src/index.ts 8:17-40 WARNING in ../../node_modules/@jupyterlab/mathjax2/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/mathjax2/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/mathjax2/src/index.ts' @ ./src/app/diff.ts 9:19-50 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/nbformat/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/nbformat/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/nbformat/src/index.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/outputmodel.js 5:0-49 38:12-36 170:12-36 171:12-34 172:12-36 175:17-34 183:17-33 197:12-36 197:48-70 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 14:0-30 14:0-30 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/observables/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/index.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/observables/lib/modeldb.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/modeldb.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/modeldb.ts' @ ../../node_modules/@jupyterlab/observables/lib/index.js 9:0-26 9:0-26 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/observables/lib/observablejson.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablejson.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablejson.ts' @ ../../node_modules/@jupyterlab/observables/lib/index.js 10:0-33 10:0-33 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/observables/lib/observablelist.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablelist.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablelist.ts' @ ../../node_modules/@jupyterlab/observables/lib/index.js 11:0-33 11:0-33 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/observables/lib/observablemap.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablemap.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablemap.ts' @ ../../node_modules/@jupyterlab/observables/lib/index.js 12:0-32 12:0-32 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/observables/lib/observablestring.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablestring.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/observablestring.ts' @ ../../node_modules/@jupyterlab/observables/lib/index.js 13:0-35 13:0-35 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/observables/lib/undoablelist.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/undoablelist.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/observables/src/undoablelist.ts' @ ../../node_modules/@jupyterlab/observables/lib/index.js 14:0-31 14:0-31 @ ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js 5:0-57 21:25-39 @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/outputarea/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/index.ts' @ ../nbdime/lib/merge/widget/output.js @ ../nbdime/lib/merge/widget/cell.js 38:17-36 @ ../nbdime/lib/merge/widget/index.js 19:13-30 @ ./src/app/common.ts 35:17-51 @ ./src/index.ts 8:17-40 WARNING in ../../node_modules/@jupyterlab/outputarea/lib/model.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/model.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/model.ts' @ ../../node_modules/@jupyterlab/outputarea/lib/index.js 7:0-24 7:0-24 @ ../nbdime/lib/merge/widget/output.js @ ../nbdime/lib/merge/widget/cell.js 38:17-36 @ ../nbdime/lib/merge/widget/index.js 19:13-30 @ ./src/app/common.ts 35:17-51 @ ./src/index.ts 8:17-40 WARNING in ../../node_modules/@jupyterlab/outputarea/lib/widget.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/widget.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/outputarea/src/widget.ts' @ ../../node_modules/@jupyterlab/outputarea/lib/index.js 8:0-25 8:0-25 @ ../nbdime/lib/merge/widget/output.js @ ../nbdime/lib/merge/widget/cell.js 38:17-36 @ ../nbdime/lib/merge/widget/index.js 19:13-30 @ ./src/app/common.ts 35:17-51 @ ./src/index.ts 8:17-40 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/attachmentmodel.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/attachmentmodel.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/attachmentmodel.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 10:0-34 10:0-34 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/factories.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/factories.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/factories.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 11:0-28 11:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/index.ts' @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/latex.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/latex.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/latex.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 12:0-24 12:0-24 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/mimemodel.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/mimemodel.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/mimemodel.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 13:0-28 13:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/outputmodel.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/outputmodel.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/outputmodel.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 14:0-30 14:0-30 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/registry.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/registry.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/registry.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 15:0-27 15:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/renderers.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/renderers.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/renderers.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/tokens.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 17:0-25 17:0-25 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/rendermime/lib/widgets.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/widgets.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/rendermime/src/widgets.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 18:0-26 18:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/basemanager.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/basemanager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/basemanager.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 19:13-37 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/builder/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/builder/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/builder/index.ts' @ ../../node_modules/@jupyterlab/services/lib/manager.js 7:18-38 @ ../../node_modules/@jupyterlab/services/lib/index.js 25:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/config/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/config/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/config/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 20:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/contents/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/contents/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/contents/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 21:13-34 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/contents/validate.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/contents/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/contents/validate.ts' @ ../../node_modules/@jupyterlab/services/lib/contents/index.js 29:30-51 @ ../../node_modules/@jupyterlab/services/lib/index.js 21:13-34 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/event/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/event/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/event/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 22:13-31 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/index.ts' @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/comm.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/comm.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/comm.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/default.js 29:15-32 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 35:18-38 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/default.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/default.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/default.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 35:18-38 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/future.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/future.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/future.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/default.js 31:17-36 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 35:18-38 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/kernel.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/kernel.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/kernel.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 29:28-47 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/manager.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/manager.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 37:13-33 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/messages.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/messages.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/messages.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 31:35-56 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/restapi.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/restapi.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/restapi.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 33:31-51 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/serialize.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/serialize.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/serialize.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/default.js 32:31-53 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 35:18-38 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernel/validate.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernel/validate.ts' @ ../../node_modules/@jupyterlab/services/lib/kernel/restapi.js 8:19-40 @ ../../node_modules/@jupyterlab/services/lib/kernel/index.js 33:31-51 @ ../../node_modules/@jupyterlab/services/lib/index.js 23:13-32 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/kernelspec.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/kernelspec.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/kernelspec.ts' @ ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js 28:32-55 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/manager.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/manager.ts' @ ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js 32:13-33 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/restapi.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/restapi.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/restapi.ts' @ ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js 30:35-55 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/kernelspec/validate.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/kernelspec/validate.ts' @ ../../node_modules/@jupyterlab/services/lib/kernelspec/restapi.js 7:19-40 @ ../../node_modules/@jupyterlab/services/lib/kernelspec/index.js 30:35-55 @ ../../node_modules/@jupyterlab/services/lib/index.js 24:13-36 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/manager.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/manager.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 25:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/nbconvert/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/nbconvert/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/nbconvert/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 32:13-35 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/serverconnection.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/serverconnection.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/serverconnection.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 26:13-42 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/session/default.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/default.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/default.ts' @ ../../node_modules/@jupyterlab/services/lib/session/manager.js 11:18-38 @ ../../node_modules/@jupyterlab/services/lib/session/index.js 32:13-33 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/session/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/session/manager.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/manager.ts' @ ../../node_modules/@jupyterlab/services/lib/session/index.js 32:13-33 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/session/restapi.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/restapi.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/restapi.ts' @ ../../node_modules/@jupyterlab/services/lib/session/index.js 30:32-52 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/session/session.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/session.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/session.ts' @ ../../node_modules/@jupyterlab/services/lib/session/index.js 28:29-49 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/session/validate.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/session/validate.ts' @ ../../node_modules/@jupyterlab/services/lib/session/restapi.js 8:19-40 @ ../../node_modules/@jupyterlab/services/lib/session/index.js 30:32-52 @ ../../node_modules/@jupyterlab/services/lib/index.js 27:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/setting/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/setting/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/setting/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 28:13-33 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/shim/ws.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/shim/ws.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/shim/ws.ts' @ ../../node_modules/@jupyterlab/services/lib/serverconnection.js 20:16-29 @ ../../node_modules/@jupyterlab/services/lib/index.js 26:13-42 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/default.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/default.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/default.ts' @ ../../node_modules/@jupyterlab/services/lib/terminal/manager.js 12:18-38 @ ../../node_modules/@jupyterlab/services/lib/terminal/index.js 32:13-33 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/manager.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/manager.ts' @ ../../node_modules/@jupyterlab/services/lib/terminal/index.js 32:13-33 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/restapi.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/restapi.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/restapi.ts' @ ../../node_modules/@jupyterlab/services/lib/terminal/index.js 30:33-53 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/terminal/terminal.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/terminal.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/terminal/terminal.ts' @ ../../node_modules/@jupyterlab/services/lib/terminal/index.js 28:30-51 @ ../../node_modules/@jupyterlab/services/lib/index.js 29:13-34 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/user/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/user/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/user/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 30:13-30 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/validate.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/validate.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/validate.ts' @ ../../node_modules/@jupyterlab/services/lib/contents/validate.js 6:19-41 @ ../../node_modules/@jupyterlab/services/lib/contents/index.js 29:30-51 @ ../../node_modules/@jupyterlab/services/lib/index.js 21:13-34 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/services/lib/workspace/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/workspace/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/services/src/workspace/index.ts' @ ../../node_modules/@jupyterlab/services/lib/index.js 31:13-35 @ ../nbdime/lib/request/index.js 7:19-50 @ ./src/app/diff.ts 12:18-47 @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/settingregistry/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/index.ts' @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/factory.js 2:0-62 72:43-80 76:52-89 97:47-84 @ ../../nodelerna success run Ran npm script 'build' in 3 packages in 45.5s: lerna success - nbdime-jupyterlab lerna success - nbdime lerna success - nbdime-webapp _modules/@jupyterlab/apputils/lib/toolbar/index.js 1:0-26 1:0-26 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/settingregistry/lib/settingregistry.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/settingregistry.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/settingregistry.ts' @ ../../node_modules/@jupyterlab/settingregistry/lib/index.js 9:0-34 9:0-34 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/factory.js 2:0-62 72:43-80 76:52-89 97:47-84 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 1:0-26 1:0-26 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/settingregistry/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/settingregistry/src/tokens.ts' @ ../../node_modules/@jupyterlab/settingregistry/lib/index.js 10:0-25 10:0-25 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/factory.js 2:0-62 72:43-80 76:52-89 97:47-84 @ ../../node_modules/@jupyterlab/apputils/lib/toolbar/index.js 1:0-26 1:0-26 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 28:0-26 28:0-26 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/shared-models/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/shared-models/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/shared-models/src/index.ts' @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statedb/lib/dataconnector.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/dataconnector.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/dataconnector.ts' @ ../../node_modules/@jupyterlab/statedb/lib/index.js 21:13-39 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/statedb/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/index.ts' @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/statedb/lib/interfaces.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/interfaces.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/interfaces.ts' @ ../../node_modules/@jupyterlab/statedb/lib/index.js 22:13-36 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/statedb/lib/restorablepool.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/restorablepool.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/restorablepool.ts' @ ../../node_modules/@jupyterlab/statedb/lib/index.js 23:13-40 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/statedb/lib/statedb.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/statedb.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/statedb.ts' @ ../../node_modules/@jupyterlab/statedb/lib/index.js 24:13-33 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/statedb/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statedb/src/tokens.ts' @ ../../node_modules/@jupyterlab/statedb/lib/index.js 25:13-32 @ ../../node_modules/@jupyterlab/apputils/lib/widgettracker.js 3:0-53 31:39-53 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 30:0-32 30:0-32 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/group.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/group.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/group.tsx' @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 3:0-24 3:0-24 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/hover.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/hover.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/hover.tsx' @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 4:0-24 4:0-24 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/index.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/progressBar.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/progressBar.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/progressBar.tsx' @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 5:0-30 5:0-30 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/progressCircle.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/progressCircle.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/progressCircle.tsx' @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 7:0-33 7:0-33 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/components/text.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/text.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/components/text.tsx' @ ../../node_modules/@jupyterlab/statusbar/lib/components/index.js 6:0-23 6:0-23 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 9:0-29 9:0-29 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/index.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/defaults/kernelStatus.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/kernelStatus.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/kernelStatus.tsx' @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js 3:0-31 3:0-31 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/defaults/lineCol.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/lineCol.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/lineCol.tsx' @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js 4:0-26 4:0-26 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/defaults/runningSessions.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/runningSessions.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/defaults/runningSessions.tsx' @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js 5:0-34 5:0-34 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/index.ts' @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/statusbar.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/statusbar.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/statusbar.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 11:0-28 11:0-28 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/layout.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/layout.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/layout.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/style/statusbar.js 4:0-66 32:3-15 33:26-38 34:30-41 35:31-42 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 12:0-34 12:0-34 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/lineForm.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/lineForm.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/lineForm.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/lineCol.js 9:0-183 69:56-70 71:64-79 71:126-152 72:76-89 75:60-77 76:77-95 77:82-96 78:58-73 @ ../../node_modules/@jupyterlab/statusbar/lib/defaults/index.js 4:0-26 4:0-26 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 10:0-27 10:0-27 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/statusbar.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/statusbar.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/statusbar.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 12:0-34 12:0-34 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/text.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/text.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/text.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/style/statusbar.js 5:0-34 21:15-23 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 12:0-34 12:0-34 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/style/variables.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/variables.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/style/variables.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/style/statusbar.js 6:0-31 8:17-33 9:18-34 14:29-44 19:21-36 22:19-38 27:16-36 28:15-26 30:17-38 31:18-39 37:15-26 38:16-31 39:17-32 40:12-23 41:16-31 42:18-35 43:11-25 @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 12:0-34 12:0-34 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/statusbar/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/statusbar/src/tokens.ts' @ ../../node_modules/@jupyterlab/statusbar/lib/index.js 13:0-25 13:0-25 @ ../../node_modules/@jupyterlab/codemirror/lib/syntaxstatus.js 2:0-77 15:31-39 54:26-35 64:22-37 @ ../../node_modules/@jupyterlab/codemirror/lib/index.js 13:0-31 13:0-31 @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyterlab/translation/lib/base.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/base.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/base.ts' @ ../../node_modules/@jupyterlab/translation/lib/index.js 8:0-23 8:0-23 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/translation/lib/gettext.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/gettext.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/gettext.ts' @ ../../node_modules/@jupyterlab/translation/lib/index.js 9:0-26 9:0-26 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/translation/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/index.ts' @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/translation/lib/manager.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/manager.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/manager.ts' @ ../../node_modules/@jupyterlab/translation/lib/index.js 10:0-26 10:0-26 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/translation/lib/server.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/server.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/server.ts' @ ../../node_modules/@jupyterlab/translation/lib/index.js 11:0-25 11:0-25 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/translation/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/tokens.ts' @ ../../node_modules/@jupyterlab/translation/lib/index.js 12:0-25 12:0-25 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/translation/lib/utils.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/utils.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/translation/src/utils.ts' @ ../../node_modules/@jupyterlab/translation/lib/gettext.js 15:0-42 34:23-38 87:23-38 147:17-32 284:17-32 435:17-32 @ ../../node_modules/@jupyterlab/translation/lib/index.js 9:0-26 9:0-26 @ ../../node_modules/@jupyterlab/rendermime/lib/renderers.js @ ../../node_modules/@jupyterlab/rendermime/lib/index.js 16:0-28 16:0-28 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/FormComponentRegistry.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/FormComponentRegistry.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/FormComponentRegistry.tsx' @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 12:0-40 12:0-40 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/blueprint.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/blueprint.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/blueprint.tsx' @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 7:0-28 7:0-28 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/htmlselect.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/htmlselect.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/htmlselect.tsx' @ ../../node_modules/@jupyterlab/ui-components/lib/components/index.js 3:0-29 3:0-29 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/index.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/interface.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/interface.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/interface.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/components/index.js 4:0-28 4:0-28 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/menu.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/menu.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/menu.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/components/index.js 5:0-23 5:0-23 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/components/switch.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/switch.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/components/switch.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/components/index.js 6:0-25 6:0-25 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 8:0-29 8:0-29 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/iconimports.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/iconimports.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/iconimports.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 3:0-30 3:0-30 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/index.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/labicon.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/labicon.tsx' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/labicon.tsx' @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/commandpalettesvg.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/commandpalettesvg.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/commandpalettesvg.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/index.js 3:0-36 3:0-36 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 5:0-26 5:0-26 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/index.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 5:0-26 5:0-26 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/menusvg.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/menusvg.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/menusvg.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/index.js 4:0-26 4:0-26 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 5:0-26 5:0-26 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/tabbarsvg.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/tabbarsvg.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/icon/widgets/tabbarsvg.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/icon/widgets/index.js 5:0-28 5:0-28 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js 5:0-26 5:0-26 @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/index.ts' @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/style/icon.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/style/icon.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/style/icon.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/style/index.js 3:0-23 3:0-23 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/labicon.js 21:0-40 411:81-104 486:77-100 496:27-50 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/style/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/style/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/style/index.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/icon/labicon.js 21:0-40 411:81-104 486:77-100 496:27-50 @ ../../node_modules/@jupyterlab/ui-components/lib/icon/index.js @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 9:0-23 9:0-23 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/tokens.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/tokens.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/tokens.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 10:0-25 10:0-25 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyterlab/ui-components/lib/utils.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/utils.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyterlab/ui-components/src/utils.ts' @ ../../node_modules/@jupyterlab/ui-components/lib/index.js 11:0-24 11:0-24 @ ../../node_modules/@jupyterlab/apputils/lib/collapse.js 3:0-71 137:27-38 137:41-54 @ ../../node_modules/@jupyterlab/apputils/lib/index.js 8:0-27 8:0-27 @ ./src/app/diff.ts @ ./src/index.ts 5:15-36 WARNING in ../../node_modules/@jupyter/ydoc/lib/api.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/api.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/api.ts' @ ../../node_modules/@jupyter/ydoc/lib/index.js 9:0-25 9:0-25 @ ../../node_modules/@jupyterlab/shared-models/lib/index.js 12:0-30 12:0-30 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyter/ydoc/lib/index.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/index.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/index.ts' @ ../../node_modules/@jupyterlab/shared-models/lib/index.js 12:0-30 12:0-30 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyter/ydoc/lib/utils.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/utils.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/utils.ts' @ ../../node_modules/@jupyter/ydoc/lib/index.js 11:0-27 11:0-27 @ ../../node_modules/@jupyterlab/shared-models/lib/index.js 12:0-30 12:0-30 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in ../../node_modules/@jupyter/ydoc/lib/ymodels.js Module Warning (from ../../node_modules/source-map-loader/dist/cjs.js): Failed to parse source map from '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/ymodels.ts' file: Error: ENOENT: no such file or directory, open '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/node_modules/@jupyter/ydoc/src/ymodels.ts' @ ../../node_modules/@jupyter/ydoc/lib/index.js 10:0-29 10:0-29 @ ../../node_modules/@jupyterlab/shared-models/lib/index.js 12:0-30 12:0-30 @ ../../node_modules/@jupyterlab/codeeditor/lib/editor.js 4:0-52 6:27-45 43:31-58 @ ../../node_modules/@jupyterlab/codeeditor/lib/index.js @ ../nbdime/lib/common/editor.js @ ./src/app/staticdiff.ts 7:17-52 @ ./src/app/compare.ts 9:21-44 @ ./src/index.ts 7:18-42 WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). This can impact web performance. Assets: nbdime.js (3.71 MiB) 2f517e09eb2ca6650ff5.svg (730 KiB) 7a8b4f130182d19a2d7c.svg (897 KiB) 569.nbdime.js (423 KiB) WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance. Entrypoints: main (3.71 MiB) nbdime.js 176 warnings have detailed information that is not shown. Use 'stats.errorDetails: true' resp. '--stats-error-details' to show it. webpack 5.88.1 compiled with 178 warnings in 38094 ms running handle_files running build running build_py creating build creating build/lib creating build/lib/nbdime copying nbdime/__init__.py -> build/lib/nbdime copying nbdime/__main__.py -> build/lib/nbdime copying nbdime/_version.py -> build/lib/nbdime copying nbdime/args.py -> build/lib/nbdime copying nbdime/config.py -> build/lib/nbdime copying nbdime/diff_format.py -> build/lib/nbdime copying nbdime/diff_utils.py -> build/lib/nbdime copying nbdime/gitfiles.py -> build/lib/nbdime copying nbdime/ignorables.py -> build/lib/nbdime copying nbdime/log.py -> build/lib/nbdime copying nbdime/nbdiffapp.py -> build/lib/nbdime copying nbdime/nbmergeapp.py -> build/lib/nbdime copying nbdime/nbpatchapp.py -> build/lib/nbdime copying nbdime/nbshowapp.py -> build/lib/nbdime copying nbdime/patching.py -> build/lib/nbdime copying nbdime/prettyprint.py -> build/lib/nbdime copying nbdime/profiling.py -> build/lib/nbdime copying nbdime/utils.py -> build/lib/nbdime creating build/lib/nbdime/diffing copying nbdime/diffing/__init__.py -> build/lib/nbdime/diffing copying nbdime/diffing/directorydiff.py -> build/lib/nbdime/diffing copying nbdime/diffing/generic.py -> build/lib/nbdime/diffing copying nbdime/diffing/lcs.py -> build/lib/nbdime/diffing copying nbdime/diffing/notebooks.py -> build/lib/nbdime/diffing copying nbdime/diffing/seq_bruteforce.py -> build/lib/nbdime/diffing copying nbdime/diffing/seq_difflib.py -> build/lib/nbdime/diffing copying nbdime/diffing/seq_myers.py -> build/lib/nbdime/diffing copying nbdime/diffing/sequences.py -> build/lib/nbdime/diffing copying nbdime/diffing/snakes.py -> build/lib/nbdime/diffing creating build/lib/nbdime/merging copying nbdime/merging/__init__.py -> build/lib/nbdime/merging copying nbdime/merging/autoresolve.py -> build/lib/nbdime/merging copying nbdime/merging/chunks.py -> build/lib/nbdime/merging copying nbdime/merging/decisions.py -> build/lib/nbdime/merging copying nbdime/merging/generic.py -> build/lib/nbdime/merging copying nbdime/merging/notebooks.py -> build/lib/nbdime/merging copying nbdime/merging/strategies.py -> build/lib/nbdime/merging creating build/lib/nbdime/tests copying nbdime/tests/__init__.py -> build/lib/nbdime/tests copying nbdime/tests/conftest.py -> build/lib/nbdime/tests copying nbdime/tests/test_apply_merge.py -> build/lib/nbdime/tests copying nbdime/tests/test_args.py -> build/lib/nbdime/tests copying nbdime/tests/test_autoresolve.py -> build/lib/nbdime/tests copying nbdime/tests/test_cli_apps.py -> build/lib/nbdime/tests copying nbdime/tests/test_decision_tools.py -> build/lib/nbdime/tests copying nbdime/tests/test_diff.py -> build/lib/nbdime/tests copying nbdime/tests/test_diff_format.py -> build/lib/nbdime/tests copying nbdime/tests/test_diff_gitrefs.py -> build/lib/nbdime/tests copying nbdime/tests/test_diff_json_conversion.py -> build/lib/nbdime/tests copying nbdime/tests/test_diff_performance.py -> build/lib/nbdime/tests copying nbdime/tests/test_diff_sequence.py -> build/lib/nbdime/tests copying nbdime/tests/test_diff_sequence_bruteforce.py -> build/lib/nbdime/tests copying nbdime/tests/test_diff_sequence_difflib.py -> build/lib/nbdime/tests copying nbdime/tests/test_directory_differ.py -> build/lib/nbdime/tests copying nbdime/tests/test_git_diffdriver.py -> build/lib/nbdime/tests copying nbdime/tests/test_git_filter_integration.py -> build/lib/nbdime/tests copying nbdime/tests/test_hg_differ.py -> build/lib/nbdime/tests copying nbdime/tests/test_js_artifacts_installed.py -> build/lib/nbdime/tests copying nbdime/tests/test_merge.py -> build/lib/nbdime/tests copying nbdime/tests/test_merge_format.py -> build/lib/nbdime/tests copying nbdime/tests/test_merge_notebooks.py -> build/lib/nbdime/tests copying nbdime/tests/test_merge_notebooks_inline.py -> build/lib/nbdime/tests copying nbdime/tests/test_myers.py -> build/lib/nbdime/tests copying nbdime/tests/test_notebook_diff.py -> build/lib/nbdime/tests copying nbdime/tests/test_package.py -> build/lib/nbdime/tests copying nbdime/tests/test_patch.py -> build/lib/nbdime/tests copying nbdime/tests/test_prettyprint.py -> build/lib/nbdime/tests copying nbdime/tests/test_server_extension.py -> build/lib/nbdime/tests copying nbdime/tests/test_utils.py -> build/lib/nbdime/tests copying nbdime/tests/test_web.py -> build/lib/nbdime/tests copying nbdime/tests/utils.py -> build/lib/nbdime/tests creating build/lib/nbdime/vcs copying nbdime/vcs/__init__.py -> build/lib/nbdime/vcs creating build/lib/nbdime/webapp copying nbdime/webapp/__init__.py -> build/lib/nbdime/webapp copying nbdime/webapp/nb_server_extension.py -> build/lib/nbdime/webapp copying nbdime/webapp/nbdifftool.py -> build/lib/nbdime/webapp copying nbdime/webapp/nbdiffweb.py -> build/lib/nbdime/webapp copying nbdime/webapp/nbdimeserver.py -> build/lib/nbdime/webapp copying nbdime/webapp/nbmergetool.py -> build/lib/nbdime/webapp copying nbdime/webapp/nbmergeweb.py -> build/lib/nbdime/webapp copying nbdime/webapp/webutil.py -> build/lib/nbdime/webapp creating build/lib/nbdime/vcs/git copying nbdime/vcs/git/__init__.py -> build/lib/nbdime/vcs/git copying nbdime/vcs/git/diffdriver.py -> build/lib/nbdime/vcs/git copying nbdime/vcs/git/difftool.py -> build/lib/nbdime/vcs/git copying nbdime/vcs/git/filter_integration.py -> build/lib/nbdime/vcs/git copying nbdime/vcs/git/mergedriver.py -> build/lib/nbdime/vcs/git copying nbdime/vcs/git/mergetool.py -> build/lib/nbdime/vcs/git creating build/lib/nbdime/vcs/hg copying nbdime/vcs/hg/__init__.py -> build/lib/nbdime/vcs/hg copying nbdime/vcs/hg/diff.py -> build/lib/nbdime/vcs/hg copying nbdime/vcs/hg/diffweb.py -> build/lib/nbdime/vcs/hg copying nbdime/vcs/hg/merge.py -> build/lib/nbdime/vcs/hg copying nbdime/vcs/hg/mergeweb.py -> build/lib/nbdime/vcs/hg creating build/lib/nbdime/tests/files copying nbdime/tests/files/apap--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/apap--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/apap--3.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/apap.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/attachment--change_attachment.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/attachment--empty_attachments_list.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/attachment--remove_attachment.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/attachment.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/empty.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/error--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/error--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/foo--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/foo--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/inline-conflict--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/inline-conflict--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/inline-conflict--3.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/markdown-only--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/markdown-only--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/mixed-conflicts--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/mixed-conflicts--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/mixed-conflicts--3.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/multi_cell_nb--cellchange.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/multi_cell_nb--local.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/multi_cell_nb--remote.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/multi_cell_nb.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/multilevel-test-base-local-diff.json -> build/lib/nbdime/tests/files copying nbdime/tests/files/multilevel-test-base.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/multilevel-test-local.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/multilevel-test-merged.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/multilevel-test-remote.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/output-conflict--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/output-conflict--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/output-conflict--3.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb--changed_ec.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb--changed_metadata.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb--changed_output.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb--changed_source.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb--changed_source_output.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb--changed_source_output_ec.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb--json_output.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb--json_output_changed.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/single_cell_nb.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/source-conflict--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/source-conflict--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/source-conflict--3.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/src-and-output--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/src-and-output--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/test-data-singlecell--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/test-data-singlecell--2.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/unicode--1.ipynb -> build/lib/nbdime/tests/files copying nbdime/tests/files/unicode--2.ipynb -> build/lib/nbdime/tests/files creating build/lib/nbdime/tests/filters copying nbdime/tests/filters/add_helper.py -> build/lib/nbdime/tests/filters copying nbdime/tests/filters/noop.py -> build/lib/nbdime/tests/filters copying nbdime/tests/filters/strip_outputs.py -> build/lib/nbdime/tests/filters copying nbdime/diff_format.schema.json -> build/lib/nbdime copying nbdime/merge_format.schema.json -> build/lib/nbdime creating build/lib/nbdime/webapp/static copying nbdime/webapp/static/favicon.ico -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/nbdime.js -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/23f19bb08961f37aaf69.eot -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/77206a6bb316fa0aded5.eot -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/9bbb245e67a133f6e486.eot -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/2f517e09eb2ca6650ff5.svg -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/527940b104eb2ea366c8.ttf -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/2285773e6b4b172f07d9.woff -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/d878b0a6a1144760244f.woff2 -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/4689f52cc96215721344.svg -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/491974d108fe4002b2aa.ttf -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/bb58e57c48a3e911f15f.woff -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/7a3337626410ca2f4071.woff2 -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/7a8b4f130182d19a2d7c.svg -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/be9ee23c0c6390141475.ttf -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/eeccf4f66002c6f2ba24.woff -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/1551f4f60c37af51121f.woff2 -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/106.nbdime.js -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/569.nbdime.js -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/nbdime.js.LICENSE.txt -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/nbdime.js.map -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/106.nbdime.js.map -> build/lib/nbdime/webapp/static copying nbdime/webapp/static/569.nbdime.js.map -> build/lib/nbdime/webapp/static creating build/lib/nbdime/webapp/templates copying nbdime/webapp/templates/compare.html -> build/lib/nbdime/webapp/templates copying nbdime/webapp/templates/diff.html -> build/lib/nbdime/webapp/templates copying nbdime/webapp/templates/difftool.html -> build/lib/nbdime/webapp/templates copying nbdime/webapp/templates/merge.html -> build/lib/nbdime/webapp/templates copying nbdime/webapp/templates/mergetool.html -> build/lib/nbdime/webapp/templates copying nbdime/webapp/templates/nbdimepage.html -> build/lib/nbdime/webapp/templates creating build/lib/nbdime/webapp/testnotebooks copying nbdime/webapp/testnotebooks/base.ipynb -> build/lib/nbdime/webapp/testnotebooks copying nbdime/webapp/testnotebooks/cellchange.ipynb -> build/lib/nbdime/webapp/testnotebooks copying nbdime/webapp/testnotebooks/local.ipynb -> build/lib/nbdime/webapp/testnotebooks copying nbdime/webapp/testnotebooks/remote.ipynb -> build/lib/nbdime/webapp/testnotebooks copying nbdime/webapp/testnotebooks/scrollA.ipynb -> build/lib/nbdime/webapp/testnotebooks copying nbdime/webapp/testnotebooks/scrollB.ipynb -> build/lib/nbdime/webapp/testnotebooks creating build/lib/nbdime/labextension copying nbdime/labextension/package.json -> build/lib/nbdime/labextension creating build/lib/nbdime/labextension/schemas creating build/lib/nbdime/labextension/schemas/nbdime-jupyterlab copying nbdime/labextension/schemas/nbdime-jupyterlab/plugin.json -> build/lib/nbdime/labextension/schemas/nbdime-jupyterlab copying nbdime/labextension/schemas/nbdime-jupyterlab/package.json.orig -> build/lib/nbdime/labextension/schemas/nbdime-jupyterlab creating build/lib/nbdime/labextension/static copying nbdime/labextension/static/style.js -> build/lib/nbdime/labextension/static copying nbdime/labextension/static/remoteEntry.42b7c07a01e9b395f8d9.js -> build/lib/nbdime/labextension/static copying nbdime/labextension/static/568.20a60a817c800d7ff1cf.js -> build/lib/nbdime/labextension/static copying nbdime/labextension/static/380.afdff9238b9ac447550b.js -> build/lib/nbdime/labextension/static copying nbdime/labextension/static/third-party-licenses.json -> build/lib/nbdime/labextension/static creating build/lib/nbdime/notebook_ext copying nbdime/notebook_ext/index.js -> build/lib/nbdime/notebook_ext copying nbdime/notebook_ext/nbdime.yaml -> build/lib/nbdime/notebook_ext installing to build/bdist.linux-x86_64/wheel running install running install_lib creating build/bdist.linux-x86_64 creating build/bdist.linux-x86_64/wheel creating build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/__main__.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/_version.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/args.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/config.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/diff_format.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/diff_utils.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/gitfiles.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/ignorables.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/log.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/nbdiffapp.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/nbmergeapp.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/nbpatchapp.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/nbshowapp.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/patching.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/prettyprint.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/profiling.py -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/utils.py -> build/bdist.linux-x86_64/wheel/nbdime creating build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/directorydiff.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/generic.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/lcs.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/notebooks.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/seq_bruteforce.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/seq_difflib.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/seq_myers.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/sequences.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing copying build/lib/nbdime/diffing/snakes.py -> build/bdist.linux-x86_64/wheel/nbdime/diffing creating build/bdist.linux-x86_64/wheel/nbdime/merging copying build/lib/nbdime/merging/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/merging copying build/lib/nbdime/merging/autoresolve.py -> build/bdist.linux-x86_64/wheel/nbdime/merging copying build/lib/nbdime/merging/chunks.py -> build/bdist.linux-x86_64/wheel/nbdime/merging copying build/lib/nbdime/merging/decisions.py -> build/bdist.linux-x86_64/wheel/nbdime/merging copying build/lib/nbdime/merging/generic.py -> build/bdist.linux-x86_64/wheel/nbdime/merging copying build/lib/nbdime/merging/notebooks.py -> build/bdist.linux-x86_64/wheel/nbdime/merging copying build/lib/nbdime/merging/strategies.py -> build/bdist.linux-x86_64/wheel/nbdime/merging creating build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/conftest.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_apply_merge.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_args.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_autoresolve.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_cli_apps.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_decision_tools.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_diff.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_diff_format.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_diff_gitrefs.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_diff_json_conversion.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_diff_performance.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_diff_sequence.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_diff_sequence_bruteforce.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_diff_sequence_difflib.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_directory_differ.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_git_diffdriver.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_git_filter_integration.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_hg_differ.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_js_artifacts_installed.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_merge.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_merge_format.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_merge_notebooks.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_merge_notebooks_inline.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_myers.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_notebook_diff.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_package.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_patch.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_prettyprint.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_server_extension.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_utils.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/test_web.py -> build/bdist.linux-x86_64/wheel/nbdime/tests copying build/lib/nbdime/tests/utils.py -> build/bdist.linux-x86_64/wheel/nbdime/tests creating build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/apap--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/apap--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/apap--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/apap.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/attachment--change_attachment.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/attachment--empty_attachments_list.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/attachment--remove_attachment.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/attachment.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/empty.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/error--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/error--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/foo--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/foo--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/inline-conflict--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/inline-conflict--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/inline-conflict--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/markdown-only--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/markdown-only--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/mixed-conflicts--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/mixed-conflicts--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/mixed-conflicts--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multi_cell_nb--cellchange.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multi_cell_nb--local.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multi_cell_nb--remote.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multi_cell_nb.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multilevel-test-base-local-diff.json -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multilevel-test-base.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multilevel-test-local.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multilevel-test-merged.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/multilevel-test-remote.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/output-conflict--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/output-conflict--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/output-conflict--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb--changed_ec.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb--changed_metadata.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb--changed_output.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb--changed_source.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb--changed_source_output.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb--changed_source_output_ec.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb--json_output.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb--json_output_changed.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/single_cell_nb.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/source-conflict--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/source-conflict--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/source-conflict--3.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/src-and-output--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/src-and-output--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/test-data-singlecell--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/test-data-singlecell--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/unicode--1.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files copying build/lib/nbdime/tests/files/unicode--2.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/tests/files creating build/bdist.linux-x86_64/wheel/nbdime/tests/filters copying build/lib/nbdime/tests/filters/add_helper.py -> build/bdist.linux-x86_64/wheel/nbdime/tests/filters copying build/lib/nbdime/tests/filters/noop.py -> build/bdist.linux-x86_64/wheel/nbdime/tests/filters copying build/lib/nbdime/tests/filters/strip_outputs.py -> build/bdist.linux-x86_64/wheel/nbdime/tests/filters creating build/bdist.linux-x86_64/wheel/nbdime/vcs copying build/lib/nbdime/vcs/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs creating build/bdist.linux-x86_64/wheel/nbdime/vcs/git copying build/lib/nbdime/vcs/git/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git copying build/lib/nbdime/vcs/git/diffdriver.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git copying build/lib/nbdime/vcs/git/difftool.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git copying build/lib/nbdime/vcs/git/filter_integration.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git copying build/lib/nbdime/vcs/git/mergedriver.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git copying build/lib/nbdime/vcs/git/mergetool.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/git creating build/bdist.linux-x86_64/wheel/nbdime/vcs/hg copying build/lib/nbdime/vcs/hg/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg copying build/lib/nbdime/vcs/hg/diff.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg copying build/lib/nbdime/vcs/hg/diffweb.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg copying build/lib/nbdime/vcs/hg/merge.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg copying build/lib/nbdime/vcs/hg/mergeweb.py -> build/bdist.linux-x86_64/wheel/nbdime/vcs/hg creating build/bdist.linux-x86_64/wheel/nbdime/webapp copying build/lib/nbdime/webapp/__init__.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp copying build/lib/nbdime/webapp/nb_server_extension.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp copying build/lib/nbdime/webapp/nbdifftool.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp copying build/lib/nbdime/webapp/nbdiffweb.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp copying build/lib/nbdime/webapp/nbdimeserver.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp copying build/lib/nbdime/webapp/nbmergetool.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp copying build/lib/nbdime/webapp/nbmergeweb.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp copying build/lib/nbdime/webapp/webutil.py -> build/bdist.linux-x86_64/wheel/nbdime/webapp creating build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/favicon.ico -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/nbdime.js -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/23f19bb08961f37aaf69.eot -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/77206a6bb316fa0aded5.eot -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/9bbb245e67a133f6e486.eot -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/2f517e09eb2ca6650ff5.svg -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/527940b104eb2ea366c8.ttf -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/2285773e6b4b172f07d9.woff -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/d878b0a6a1144760244f.woff2 -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/4689f52cc96215721344.svg -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/491974d108fe4002b2aa.ttf -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/bb58e57c48a3e911f15f.woff -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/7a3337626410ca2f4071.woff2 -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/7a8b4f130182d19a2d7c.svg -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/be9ee23c0c6390141475.ttf -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/eeccf4f66002c6f2ba24.woff -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/1551f4f60c37af51121f.woff2 -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/106.nbdime.js -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/569.nbdime.js -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/nbdime.js.LICENSE.txt -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/nbdime.js.map -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/106.nbdime.js.map -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static copying build/lib/nbdime/webapp/static/569.nbdime.js.map -> build/bdist.linux-x86_64/wheel/nbdime/webapp/static creating build/bdist.linux-x86_64/wheel/nbdime/webapp/templates copying build/lib/nbdime/webapp/templates/compare.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates copying build/lib/nbdime/webapp/templates/diff.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates copying build/lib/nbdime/webapp/templates/difftool.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates copying build/lib/nbdime/webapp/templates/merge.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates copying build/lib/nbdime/webapp/templates/mergetool.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates copying build/lib/nbdime/webapp/templates/nbdimepage.html -> build/bdist.linux-x86_64/wheel/nbdime/webapp/templates creating build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks copying build/lib/nbdime/webapp/testnotebooks/base.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks copying build/lib/nbdime/webapp/testnotebooks/cellchange.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks copying build/lib/nbdime/webapp/testnotebooks/local.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks copying build/lib/nbdime/webapp/testnotebooks/remote.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks copying build/lib/nbdime/webapp/testnotebooks/scrollA.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks copying build/lib/nbdime/webapp/testnotebooks/scrollB.ipynb -> build/bdist.linux-x86_64/wheel/nbdime/webapp/testnotebooks copying build/lib/nbdime/diff_format.schema.json -> build/bdist.linux-x86_64/wheel/nbdime copying build/lib/nbdime/merge_format.schema.json -> build/bdist.linux-x86_64/wheel/nbdime creating build/bdist.linux-x86_64/wheel/nbdime/labextension copying build/lib/nbdime/labextension/package.json -> build/bdist.linux-x86_64/wheel/nbdime/labextension creating build/bdist.linux-x86_64/wheel/nbdime/labextension/schemas creating build/bdist.linux-x86_64/wheel/nbdime/labextension/schemas/nbdime-jupyterlab copying build/lib/nbdime/labextension/schemas/nbdime-jupyterlab/plugin.json -> build/bdist.linux-x86_64/wheel/nbdime/labextension/schemas/nbdime-jupyterlab copying build/lib/nbdime/labextension/schemas/nbdime-jupyterlab/package.json.orig -> build/bdist.linux-x86_64/wheel/nbdime/labextension/schemas/nbdime-jupyterlab creating build/bdist.linux-x86_64/wheel/nbdime/labextension/static copying build/lib/nbdime/labextension/static/style.js -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static copying build/lib/nbdime/labextension/static/remoteEntry.42b7c07a01e9b395f8d9.js -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static copying build/lib/nbdime/labextension/static/568.20a60a817c800d7ff1cf.js -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static copying build/lib/nbdime/labextension/static/380.afdff9238b9ac447550b.js -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static copying build/lib/nbdime/labextension/static/third-party-licenses.json -> build/bdist.linux-x86_64/wheel/nbdime/labextension/static creating build/bdist.linux-x86_64/wheel/nbdime/notebook_ext copying build/lib/nbdime/notebook_ext/index.js -> build/bdist.linux-x86_64/wheel/nbdime/notebook_ext copying build/lib/nbdime/notebook_ext/nbdime.yaml -> build/bdist.linux-x86_64/wheel/nbdime/notebook_ext running install_data creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/nbextensions creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/nbextensions/nbdime copying nbdime/notebook_ext/index.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/nbextensions/nbdime creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/lab creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/lab/extensions copying packages/labextension/dist/nbdime-jupyterlab-2.2.0.tgz -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/lab/extensions creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static copying nbdime/labextension/static/remoteEntry.42b7c07a01e9b395f8d9.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static copying nbdime/labextension/static/568.20a60a817c800d7ff1cf.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static copying nbdime/labextension/static/380.afdff9238b9ac447550b.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static copying nbdime/labextension/static/style.js -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static copying nbdime/labextension/static/third-party-licenses.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static copying nbdime/labextension/package.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab copying nbdime/labextension/schemas/nbdime-jupyterlab/plugin.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab copying nbdime/labextension/schemas/nbdime-jupyterlab/package.json.orig -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/jupyter_notebook_config.d copying jupyter-config/jupyter_notebook_config.d/nbdime.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/jupyter_notebook_config.d creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/jupyter_server_config.d copying jupyter-config/jupyter_server_config.d/nbdime.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/jupyter_server_config.d creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/nbconfig creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/nbconfig/notebook.d copying jupyter-config/nbconfig/notebook.d/nbdime.json -> build/bdist.linux-x86_64/wheel/nbdime-3.2.1.data/data/etc/jupyter/nbconfig/notebook.d running install_egg_info running egg_info writing nbdime.egg-info/PKG-INFO writing dependency_links to nbdime.egg-info/dependency_links.txt writing entry points to nbdime.egg-info/entry_points.txt writing requirements to nbdime.egg-info/requires.txt writing top-level names to nbdime.egg-info/top_level.txt reading manifest file 'nbdime.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' /usr/lib/python3.8/site-packages/setuptools/config/setupcfg.py:293: _DeprecatedConfig: Deprecated config in `setup.cfg` !! ******************************************************************************** The license_file parameter is deprecated, use license_files instead. By 2023-Oct-30, you need to update your project and remove deprecated calls or your builds will no longer be supported. See https://setuptools.pypa.io/en/latest/userguide/declarative_config.html for details. ******************************************************************************** !! parsed = self.parsers.get(option_name, lambda x: x)(value) warning: no previously-included files found matching 'docs/#*' no previously-included directories found matching 'docs/build' no previously-included directories found matching 'docs/gh-pages' no previously-included directories found matching 'docs/dist' no previously-included directories found matching 'packages/*/coverage' no previously-included directories found matching 'packages/*/build' no previously-included directories found matching 'packages/*/test/build' warning: no previously-included files matching '*~' found anywhere in distribution warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*.pyo' found anywhere in distribution warning: no previously-included files matching '.git' found anywhere in distribution warning: no previously-included files matching '.ipynb_checkpoints' found anywhere in distribution adding license file 'LICENSE.md' writing manifest file 'nbdime.egg-info/SOURCES.txt' Copying nbdime.egg-info to build/bdist.linux-x86_64/wheel/nbdime-3.2.1-py3.8.egg-info running install_scripts creating build/bdist.linux-x86_64/wheel/nbdime-3.2.1.dist-info/WHEEL creating '/home/tkloczko/rpmbuild/BUILD/nbdime-3.2.1/dist/.tmp-u5tblb77/nbdime-3.2.1-py2.py3-none-any.whl' and adding 'build/bdist.linux-x86_64/wheel' to it adding 'nbdime/__init__.py' adding 'nbdime/__main__.py' adding 'nbdime/_version.py' adding 'nbdime/args.py' adding 'nbdime/config.py' adding 'nbdime/diff_format.py' adding 'nbdime/diff_format.schema.json' adding 'nbdime/diff_utils.py' adding 'nbdime/gitfiles.py' adding 'nbdime/ignorables.py' adding 'nbdime/log.py' adding 'nbdime/merge_format.schema.json' adding 'nbdime/nbdiffapp.py' adding 'nbdime/nbmergeapp.py' adding 'nbdime/nbpatchapp.py' adding 'nbdime/nbshowapp.py' adding 'nbdime/patching.py' adding 'nbdime/prettyprint.py' adding 'nbdime/profiling.py' adding 'nbdime/utils.py' adding 'nbdime/diffing/__init__.py' adding 'nbdime/diffing/directorydiff.py' adding 'nbdime/diffing/generic.py' adding 'nbdime/diffing/lcs.py' adding 'nbdime/diffing/notebooks.py' adding 'nbdime/diffing/seq_bruteforce.py' adding 'nbdime/diffing/seq_difflib.py' adding 'nbdime/diffing/seq_myers.py' adding 'nbdime/diffing/sequences.py' adding 'nbdime/diffing/snakes.py' adding 'nbdime/labextension/package.json' adding 'nbdime/labextension/schemas/nbdime-jupyterlab/package.json.orig' adding 'nbdime/labextension/schemas/nbdime-jupyterlab/plugin.json' adding 'nbdime/labextension/static/380.afdff9238b9ac447550b.js' adding 'nbdime/labextension/static/568.20a60a817c800d7ff1cf.js' adding 'nbdime/labextension/static/remoteEntry.42b7c07a01e9b395f8d9.js' adding 'nbdime/labextension/static/style.js' adding 'nbdime/labextension/static/third-party-licenses.json' adding 'nbdime/merging/__init__.py' adding 'nbdime/merging/autoresolve.py' adding 'nbdime/merging/chunks.py' adding 'nbdime/merging/decisions.py' adding 'nbdime/merging/generic.py' adding 'nbdime/merging/notebooks.py' adding 'nbdime/merging/strategies.py' adding 'nbdime/notebook_ext/index.js' adding 'nbdime/notebook_ext/nbdime.yaml' adding 'nbdime/tests/__init__.py' adding 'nbdime/tests/conftest.py' adding 'nbdime/tests/test_apply_merge.py' adding 'nbdime/tests/test_args.py' adding 'nbdime/tests/test_autoresolve.py' adding 'nbdime/tests/test_cli_apps.py' adding 'nbdime/tests/test_decision_tools.py' adding 'nbdime/tests/test_diff.py' adding 'nbdime/tests/test_diff_format.py' adding 'nbdime/tests/test_diff_gitrefs.py' adding 'nbdime/tests/test_diff_json_conversion.py' adding 'nbdime/tests/test_diff_performance.py' adding 'nbdime/tests/test_diff_sequence.py' adding 'nbdime/tests/test_diff_sequence_bruteforce.py' adding 'nbdime/tests/test_diff_sequence_difflib.py' adding 'nbdime/tests/test_directory_differ.py' adding 'nbdime/tests/test_git_diffdriver.py' adding 'nbdime/tests/test_git_filter_integration.py' adding 'nbdime/tests/test_hg_differ.py' adding 'nbdime/tests/test_js_artifacts_installed.py' adding 'nbdime/tests/test_merge.py' adding 'nbdime/tests/test_merge_format.py' adding 'nbdime/tests/test_merge_notebooks.py' adding 'nbdime/tests/test_merge_notebooks_inline.py' adding 'nbdime/tests/test_myers.py' adding 'nbdime/tests/test_notebook_diff.py' adding 'nbdime/tests/test_package.py' adding 'nbdime/tests/test_patch.py' adding 'nbdime/tests/test_prettyprint.py' adding 'nbdime/tests/test_server_extension.py' adding 'nbdime/tests/test_utils.py' adding 'nbdime/tests/test_web.py' adding 'nbdime/tests/utils.py' adding 'nbdime/tests/files/apap--1.ipynb' adding 'nbdime/tests/files/apap--2.ipynb' adding 'nbdime/tests/files/apap--3.ipynb' adding 'nbdime/tests/files/apap.ipynb' adding 'nbdime/tests/files/attachment--change_attachment.ipynb' adding 'nbdime/tests/files/attachment--empty_attachments_list.ipynb' adding 'nbdime/tests/files/attachment--remove_attachment.ipynb' adding 'nbdime/tests/files/attachment.ipynb' adding 'nbdime/tests/files/empty.ipynb' adding 'nbdime/tests/files/error--1.ipynb' adding 'nbdime/tests/files/error--2.ipynb' adding 'nbdime/tests/files/foo--1.ipynb' adding 'nbdime/tests/files/foo--2.ipynb' adding 'nbdime/tests/files/inline-conflict--1.ipynb' adding 'nbdime/tests/files/inline-conflict--2.ipynb' adding 'nbdime/tests/files/inline-conflict--3.ipynb' adding 'nbdime/tests/files/markdown-only--1.ipynb' adding 'nbdime/tests/files/markdown-only--2.ipynb' adding 'nbdime/tests/files/mixed-conflicts--1.ipynb' adding 'nbdime/tests/files/mixed-conflicts--2.ipynb' adding 'nbdime/tests/files/mixed-conflicts--3.ipynb' adding 'nbdime/tests/files/multi_cell_nb--cellchange.ipynb' adding 'nbdime/tests/files/multi_cell_nb--local.ipynb' adding 'nbdime/tests/files/multi_cell_nb--remote.ipynb' adding 'nbdime/tests/files/multi_cell_nb.ipynb' adding 'nbdime/tests/files/multilevel-test-base-local-diff.json' adding 'nbdime/tests/files/multilevel-test-base.ipynb' adding 'nbdime/tests/files/multilevel-test-local.ipynb' adding 'nbdime/tests/files/multilevel-test-merged.ipynb' adding 'nbdime/tests/files/multilevel-test-remote.ipynb' adding 'nbdime/tests/files/output-conflict--1.ipynb' adding 'nbdime/tests/files/output-conflict--2.ipynb' adding 'nbdime/tests/files/output-conflict--3.ipynb' adding 'nbdime/tests/files/single_cell_nb--changed_ec.ipynb' adding 'nbdime/tests/files/single_cell_nb--changed_metadata.ipynb' adding 'nbdime/tests/files/single_cell_nb--changed_output.ipynb' adding 'nbdime/tests/files/single_cell_nb--changed_source.ipynb' adding 'nbdime/tests/files/single_cell_nb--changed_source_output.ipynb' adding 'nbdime/tests/files/single_cell_nb--changed_source_output_ec.ipynb' adding 'nbdime/tests/files/single_cell_nb--json_output.ipynb' adding 'nbdime/tests/files/single_cell_nb--json_output_changed.ipynb' adding 'nbdime/tests/files/single_cell_nb.ipynb' adding 'nbdime/tests/files/source-conflict--1.ipynb' adding 'nbdime/tests/files/source-conflict--2.ipynb' adding 'nbdime/tests/files/source-conflict--3.ipynb' adding 'nbdime/tests/files/src-and-output--1.ipynb' adding 'nbdime/tests/files/src-and-output--2.ipynb' adding 'nbdime/tests/files/test-data-singlecell--1.ipynb' adding 'nbdime/tests/files/test-data-singlecell--2.ipynb' adding 'nbdime/tests/files/unicode--1.ipynb' adding 'nbdime/tests/files/unicode--2.ipynb' adding 'nbdime/tests/filters/add_helper.py' adding 'nbdime/tests/filters/noop.py' adding 'nbdime/tests/filters/strip_outputs.py' adding 'nbdime/vcs/__init__.py' adding 'nbdime/vcs/git/__init__.py' adding 'nbdime/vcs/git/diffdriver.py' adding 'nbdime/vcs/git/difftool.py' adding 'nbdime/vcs/git/filter_integration.py' adding 'nbdime/vcs/git/mergedriver.py' adding 'nbdime/vcs/git/mergetool.py' adding 'nbdime/vcs/hg/__init__.py' adding 'nbdime/vcs/hg/diff.py' adding 'nbdime/vcs/hg/diffweb.py' adding 'nbdime/vcs/hg/merge.py' adding 'nbdime/vcs/hg/mergeweb.py' adding 'nbdime/webapp/__init__.py' adding 'nbdime/webapp/nb_server_extension.py' adding 'nbdime/webapp/nbdifftool.py' adding 'nbdime/webapp/nbdiffweb.py' adding 'nbdime/webapp/nbdimeserver.py' adding 'nbdime/webapp/nbmergetool.py' adding 'nbdime/webapp/nbmergeweb.py' adding 'nbdime/webapp/webutil.py' adding 'nbdime/webapp/static/106.nbdime.js' adding 'nbdime/webapp/static/106.nbdime.js.map' adding 'nbdime/webapp/static/1551f4f60c37af51121f.woff2' adding 'nbdime/webapp/static/2285773e6b4b172f07d9.woff' adding 'nbdime/webapp/static/23f19bb08961f37aaf69.eot' adding 'nbdime/webapp/static/2f517e09eb2ca6650ff5.svg' adding 'nbdime/webapp/static/4689f52cc96215721344.svg' adding 'nbdime/webapp/static/491974d108fe4002b2aa.ttf' adding 'nbdime/webapp/static/527940b104eb2ea366c8.ttf' adding 'nbdime/webapp/static/569.nbdime.js' adding 'nbdime/webapp/static/569.nbdime.js.map' adding 'nbdime/webapp/static/77206a6bb316fa0aded5.eot' adding 'nbdime/webapp/static/7a3337626410ca2f4071.woff2' adding 'nbdime/webapp/static/7a8b4f130182d19a2d7c.svg' adding 'nbdime/webapp/static/9bbb245e67a133f6e486.eot' adding 'nbdime/webapp/static/bb58e57c48a3e911f15f.woff' adding 'nbdime/webapp/static/be9ee23c0c6390141475.ttf' adding 'nbdime/webapp/static/d878b0a6a1144760244f.woff2' adding 'nbdime/webapp/static/eeccf4f66002c6f2ba24.woff' adding 'nbdime/webapp/static/favicon.ico' adding 'nbdime/webapp/static/nbdime.js' adding 'nbdime/webapp/static/nbdime.js.LICENSE.txt' adding 'nbdime/webapp/static/nbdime.js.map' adding 'nbdime/webapp/templates/compare.html' adding 'nbdime/webapp/templates/diff.html' adding 'nbdime/webapp/templates/difftool.html' adding 'nbdime/webapp/templates/merge.html' adding 'nbdime/webapp/templates/mergetool.html' adding 'nbdime/webapp/templates/nbdimepage.html' adding 'nbdime/webapp/testnotebooks/base.ipynb' adding 'nbdime/webapp/testnotebooks/cellchange.ipynb' adding 'nbdime/webapp/testnotebooks/local.ipynb' adding 'nbdime/webapp/testnotebooks/remote.ipynb' adding 'nbdime/webapp/testnotebooks/scrollA.ipynb' adding 'nbdime/webapp/testnotebooks/scrollB.ipynb' adding 'nbdime-3.2.1.data/data/etc/jupyter/jupyter_notebook_config.d/nbdime.json' adding 'nbdime-3.2.1.data/data/etc/jupyter/jupyter_server_config.d/nbdime.json' adding 'nbdime-3.2.1.data/data/etc/jupyter/nbconfig/notebook.d/nbdime.json' adding 'nbdime-3.2.1.data/data/share/jupyter/lab/extensions/nbdime-jupyterlab-2.2.0.tgz' adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/package.json' adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab/package.json.orig' adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/schemas/nbdime-jupyterlab/plugin.json' adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/380.afdff9238b9ac447550b.js' adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/568.20a60a817c800d7ff1cf.js' adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/remoteEntry.42b7c07a01e9b395f8d9.js' adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/style.js' adding 'nbdime-3.2.1.data/data/share/jupyter/labextensions/nbdime-jupyterlab/static/third-party-licenses.json' adding 'nbdime-3.2.1.data/data/share/jupyter/nbextensions/nbdime/index.js' adding 'nbdime-3.2.1.dist-info/LICENSE.md' adding 'nbdime-3.2.1.dist-info/METADATA' adding 'nbdime-3.2.1.dist-info/WHEEL' adding 'nbdime-3.2.1.dist-info/entry_points.txt' adding 'nbdime-3.2.1.dist-info/top_level.txt' adding 'nbdime-3.2.1.dist-info/RECORD' removing build/bdist.linux-x86_64/wheel Successfully built nbdime-3.2.1-py2.py3-none-any.whl ```