diff --git a/.github/workflows/auto_author_assign.yml b/.github/workflows/auto_author_assign.yml index 86fce6f..046a6a7 100644 --- a/.github/workflows/auto_author_assign.yml +++ b/.github/workflows/auto_author_assign.yml @@ -12,4 +12,4 @@ jobs: assign-author: runs-on: ubuntu-latest steps: - - uses: toshimaru/auto-author-assign@v1.6.1 + - uses: toshimaru/auto-author-assign@v1.6.2 diff --git a/docs/Makefile b/docs/Makefile index c056f27..c37308e 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + # Minimal makefile for Sphinx documentation # diff --git a/docs/make.bat b/docs/make.bat index 747ffb7..121faaf 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -1,3 +1,6 @@ +rem Copyright (c) Jupyter Development Team. +rem Distributed under the terms of the Modified BSD License. + @ECHO OFF pushd %~dp0 diff --git a/docs/source/api/index.html b/docs/source/api/index.html index 24ece5d..8bed2e1 100644 --- a/docs/source/api/index.html +++ b/docs/source/api/index.html @@ -1,3 +1,8 @@ + + diff --git a/docs/source/conf.py b/docs/source/conf.py index 9ec2ae0..3e5603e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + # Configuration file for the Sphinx documentation builder. # # For the full list of built-in configuration values, see the documentation: diff --git a/docs/source/javascript_api.rst b/docs/source/javascript_api.rst index cee1733..c53fe3d 100644 --- a/docs/source/javascript_api.rst +++ b/docs/source/javascript_api.rst @@ -1,3 +1,6 @@ +.. Copyright (c) Jupyter Development Team. +.. Distributed under the terms of the Modified BSD License. + JavaScript API ============== diff --git a/docs/source/python_api.rst b/docs/source/python_api.rst index 6e1fbc5..1d0662a 100644 --- a/docs/source/python_api.rst +++ b/docs/source/python_api.rst @@ -1,3 +1,6 @@ +.. Copyright (c) Jupyter Development Team. +.. Distributed under the terms of the Modified BSD License. + Python API ========== diff --git a/javascript/yarn.lock b/javascript/yarn.lock index f5f2c31..a05ada7 100644 --- a/javascript/yarn.lock +++ b/javascript/yarn.lock @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. # yarn lockfile v1 diff --git a/jupyter_ydoc/__init__.py b/jupyter_ydoc/__init__.py index 7e61d82..7183964 100644 --- a/jupyter_ydoc/__init__.py +++ b/jupyter_ydoc/__init__.py @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + import sys from ._version import __version__ # noqa diff --git a/jupyter_ydoc/utils.py b/jupyter_ydoc/utils.py index 9e929b1..597f9fa 100644 --- a/jupyter_ydoc/utils.py +++ b/jupyter_ydoc/utils.py @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + from typing import Dict, List, Type, Union INT = Type[int] diff --git a/jupyter_ydoc/ydoc.py b/jupyter_ydoc/ydoc.py index 2194cc8..681e26f 100644 --- a/jupyter_ydoc/ydoc.py +++ b/jupyter_ydoc/ydoc.py @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + import copy from abc import ABC, abstractmethod from typing import Any, Callable, Dict, Optional diff --git a/pyproject.toml b/pyproject.toml index e9a46da..e5492cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + [build-system] requires = ["hatchling>=1.10.0", "hatch-nodejs-version"] build-backend = "hatchling.build" diff --git a/pytest.ini b/pytest.ini index 2f4c80e..fde4802 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,2 +1,5 @@ +; Copyright (c) Jupyter Development Team. +; Distributed under the terms of the Modified BSD License. + [pytest] asyncio_mode = auto diff --git a/tests/conftest.py b/tests/conftest.py index 5ee4f70..b3f4660 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + import json import subprocess from pathlib import Path diff --git a/tests/test_ypy_yjs.py b/tests/test_ypy_yjs.py index b9eee33..397d7a3 100644 --- a/tests/test_ypy_yjs.py +++ b/tests/test_ypy_yjs.py @@ -1,3 +1,6 @@ +# Copyright (c) Jupyter Development Team. +# Distributed under the terms of the Modified BSD License. + import asyncio import json from pathlib import Path diff --git a/tests/yjs_client_0.js b/tests/yjs_client_0.js index 37883a5..ab7185a 100644 --- a/tests/yjs_client_0.js +++ b/tests/yjs_client_0.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) Jupyter Development Team. + * Distributed under the terms of the Modified BSD License. + */ + import { YNotebook } from '@jupyter/ydoc' import { WebsocketProvider } from 'y-websocket'