Skip to content

Commit 753443a

Browse files
authored
Merge pull request #47 from jtpio/update-license
Update license
2 parents 578675b + adcfa3c commit 753443a

28 files changed

+41
-30
lines changed

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019 Jeremy Tuloup
1+
Copyright (c) 2020 ipylab contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

css/widget.css

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*-----------------------------------------------------------------------------
2+
| Copyright (c) ipylab contributors.
3+
| Distributed under the terms of the Modified BSD License.
4+
|----------------------------------------------------------------------------*/
5+
16
/* Default Split Handle Color*/
27
.jp-JupyterLuminoSplitPanelWidget .p-SplitPanel-handle {
38
background-color: var(--jp-border-color2);

docs/source/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656

5757
# General information about the project.
5858
project = "ipylab"
59-
copyright = "2019, Jeremy Tuloup"
60-
author = "Jeremy Tuloup"
59+
copyright = "2019, ipylab contributors"
60+
author = "ipylab contributors"
6161

6262
# The version info for the project you're documenting, acts as replacement for
6363
# |version| and |release|, also used in various other places throughout the
@@ -142,7 +142,7 @@
142142
# (source start file, target name, title,
143143
# author, documentclass [howto, manual, or own class]).
144144
latex_documents = [
145-
(master_doc, "ipylab.tex", "ipylab Documentation", "Jeremy Tuloup", "manual"),
145+
(master_doc, "ipylab.tex", "ipylab Documentation", "ipylab contributors", "manual"),
146146
]
147147

148148

ipylab/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
# Copyright (c) Jeremy Tuloup.
4+
# Copyright (c) ipylab contributors.
55
# Distributed under the terms of the Modified BSD License.
66

77
from .jupyterfrontend import JupyterFrontEnd

ipylab/_frontend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
# Copyright (c) Jeremy Tuloup.
4+
# Copyright (c) ipylab contributors.
55
# Distributed under the terms of the Modified BSD License.
66

77
"""

ipylab/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
# Copyright (c) Jeremy Tuloup.
4+
# Copyright (c) ipylab contributors.
55
# Distributed under the terms of the Modified BSD License.
66

77
version_info = (0, 3, 0)

ipylab/commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) Jeremy Tuloup.
1+
# Copyright (c) ipylab contributors.
22
# Distributed under the terms of the Modified BSD License.
33

44
from collections import defaultdict

ipylab/jupyterfrontend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
# Copyright (c) Jeremy Tuloup.
4+
# Copyright (c) ipylab contributors.
55
# Distributed under the terms of the Modified BSD License.
66

77
import asyncio

ipylab/sessions.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
"""Expose current and all sessions to python kernel
2-
"""
1+
#!/usr/bin/env python
2+
# coding: utf-8
3+
4+
# Copyright (c) ipylab contributors.
5+
# Distributed under the terms of the Modified BSD License.
36

47
import asyncio
58

@@ -35,7 +38,7 @@ def _on_frontend_msg(self, _, content, buffers):
3538

3639
async def refresh_running(self):
3740
"""Force a call to refresh running sessions
38-
41+
3942
Resolved when `SessionManager.runnigSession` resolves
4043
"""
4144
self.send({"func": "refreshRunning"})

ipylab/shell.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) Jeremy Tuloup.
1+
# Copyright (c) ipylab contributors.
22
# Distributed under the terms of the Modified BSD License.
33

44
from ipywidgets import Widget, register, widget_serialization

ipylab/tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
# Copyright (c) Jeremy Tuloup.
4+
# Copyright (c) ipylab contributors.
55
# Distributed under the terms of the Modified BSD License.
66

77
import pytest

ipylab/tests/test_example.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
# Copyright (c) Jeremy Tuloup.
4+
# Copyright (c) ipylab contributors.
55
# Distributed under the terms of the Modified BSD License.
66

77
import pytest

ipylab/tests/test_nbextension_path.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# coding: utf-8
33

4-
# Copyright (c) Jeremy Tuloup.
4+
# Copyright (c) ipylab contributors.
55
# Distributed under the terms of the Modified BSD License.
66

77

ipylab/widgets.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) Jeremy Tuloup.
1+
# Copyright (c) ipylab contributors.
22
# Distributed under the terms of the Modified BSD License.
33

44
from ipywidgets import VBox, Widget, register, widget_serialization

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"license": "BSD-3-Clause",
2121
"author": {
22-
"name": "Jeremy Tuloup",
22+
"name": "ipylab contributors",
2323
"email": "[email protected]"
2424
},
2525
"main": "lib/index.js",

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
scripts=glob(pjoin("scripts", "*")),
6262
cmdclass=cmdclass,
6363
packages=find_packages(),
64-
author="Jeremy Tuloup",
64+
author="ipylab contributors",
6565
author_email="[email protected]",
6666
url="https://github.com/jtpio/ipylab",
6767
license="BSD",

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
export * from './version';

src/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
import {

src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
// eslint-disable-next-line @typescript-eslint/no-var-requires

src/widget.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
// Import the CSS

src/widgets/commands.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
import { ObservableMap } from '@jupyterlab/observables';

src/widgets/frontend.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
import { JupyterFrontEnd } from '@jupyterlab/application';

src/widgets/palette.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
import { ICommandPalette, IPaletteItem } from '@jupyterlab/apputils';

src/widgets/panel.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
import { VBoxModel } from '@jupyter-widgets/controls';

src/widgets/sessions.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) ipylab contributors
2+
// Distributed under the terms of the Modified BSD License.
3+
14
// SessionManager exposes `JupyterLab.serviceManager.sessions` to user python kernel
25

36
import { SessionManager } from '@jupyterlab/services';

src/widgets/shell.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
import { ILabShell } from '@jupyterlab/application';

src/widgets/split_panel.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
import { JupyterPhosphorWidget, DOMWidgetView } from '@jupyter-widgets/base';

src/widgets/title.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Jeremy Tuloup
1+
// Copyright (c) ipylab contributors
22
// Distributed under the terms of the Modified BSD License.
33

44
import { WidgetModel } from '@jupyter-widgets/base';

0 commit comments

Comments
 (0)