Skip to content

Commit

Permalink
update year to 2025
Browse files Browse the repository at this point in the history
  • Loading branch information
hx2A committed Jan 1, 2025
1 parent 85fec01 commit 9c66479
Show file tree
Hide file tree
Showing 21 changed files with 37 additions and 45 deletions.
2 changes: 1 addition & 1 deletion py5jupyter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/kernels/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/kernels/py5/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/kernels/py5/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
11 changes: 5 additions & 6 deletions py5jupyter/kernels/py5/install.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand All @@ -17,16 +17,15 @@
# along with this library. If not, see <https://www.gnu.org/licenses/>.
#
# *****************************************************************************
import argparse
import json
import os
import sys
import shutil
import sys
from pathlib import Path
import argparse
import json

from jupyter_client.kernelspec import KernelSpecManager
from IPython.utils.tempdir import TemporaryDirectory

from jupyter_client.kernelspec import KernelSpecManager

kernel_json = {
"argv": [sys.executable, "-m", "py5jupyter.kernels.py5", "-f", "{connection_file}"],
Expand Down
10 changes: 4 additions & 6 deletions py5jupyter/kernels/py5/kernel.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand All @@ -20,14 +20,12 @@
import sys

from ipykernel.ipkernel import IPythonKernel
from ipykernel.kernelapp import IPKernelApp
from ipykernel.zmqshell import ZMQInteractiveShell
from IPython.core.interactiveshell import InteractiveShellABC
from ipykernel.kernelapp import IPKernelApp

from traitlets import Type, Instance, Unicode, List

from py5_tools.parsing import TransformDynamicVariablesToCalls, Py5CodeValidation
from py5_tools import __version__ as __py5_version__
from py5_tools.parsing import Py5CodeValidation, TransformDynamicVariablesToCalls
from traitlets import Instance, List, Type, Unicode

_PY5_HELP_LINKS = [
{"text": "py5 Documentation", "url": "http://py5coding.org/"},
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/kernels/py5bot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/kernels/py5bot/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
11 changes: 5 additions & 6 deletions py5jupyter/kernels/py5bot/install.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand All @@ -17,16 +17,15 @@
# along with this library. If not, see <https://www.gnu.org/licenses/>.
#
# *****************************************************************************
import argparse
import json
import os
import sys
import shutil
import sys
from pathlib import Path
import argparse
import json

from jupyter_client.kernelspec import KernelSpecManager
from IPython.utils.tempdir import TemporaryDirectory

from jupyter_client.kernelspec import KernelSpecManager

kernel_json = {
"argv": [
Expand Down
13 changes: 5 additions & 8 deletions py5jupyter/kernels/py5bot/kernel.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand All @@ -20,23 +20,20 @@
import sys

from ipykernel.ipkernel import IPythonKernel
from ipykernel.kernelapp import IPKernelApp
from ipykernel.zmqshell import ZMQInteractiveShell
from IPython.core.interactiveshell import InteractiveShellABC
from ipykernel.kernelapp import IPKernelApp

from traitlets import Type, Instance, Unicode, List

from py5_tools import __version__ as __py5_version__
from py5_tools import split_setup
from py5_tools.parsing import (
TransformDynamicVariablesToCalls,
Py5CodeValidation,
TransformDynamicVariablesToCalls,
check_for_problems,
)
from py5_tools import __version__ as __py5_version__
from traitlets import Instance, List, Type, Unicode

from . import py5bot


_PY5_HELP_LINKS = [
{"text": "py5 Documentation", "url": "http://py5coding.org/"},
{
Expand Down
5 changes: 2 additions & 3 deletions py5jupyter/kernels/py5bot/py5bot.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand All @@ -17,9 +17,8 @@
# along with this library. If not, see <https://www.gnu.org/licenses/>.
#
# *****************************************************************************
from pathlib import Path
import tempfile

from pathlib import Path

PY5BOT_CODE_STARTUP = """
import functools
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/widgets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/widgets/_frontend.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion py5jupyter/widgets/sketchportal.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# *****************************************************************************
#
# Part of the py5jupyter (& py5) library
# Copyright (C) 2022-2024 Jim Schmitz
# Copyright (C) 2022-2025 Jim Schmitz
#
# This library is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// *****************************************************************************
//
// Part of the py5jupyter (& py5) library
// Copyright (C) 2022-2024 Jim Schmitz
// Copyright (C) 2022-2025 Jim Schmitz
//
// This library is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// *****************************************************************************
//
// Part of the py5jupyter (& py5) library
// Copyright (C) 2022-2024 Jim Schmitz
// Copyright (C) 2022-2025 Jim Schmitz
//
// This library is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// *****************************************************************************
//
// Part of the py5jupyter (& py5) library
// Copyright (C) 2022-2024 Jim Schmitz
// Copyright (C) 2022-2025 Jim Schmitz
//
// This library is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// *****************************************************************************
//
// Part of the py5jupyter (& py5) library
// Copyright (C) 2022-2024 Jim Schmitz
// Copyright (C) 2022-2025 Jim Schmitz
//
// This library is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// *****************************************************************************
//
// Part of the py5jupyter (& py5) library
// Copyright (C) 2022-2024 Jim Schmitz
// Copyright (C) 2022-2025 Jim Schmitz
//
// This library is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion src/widget.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// *****************************************************************************
//
// Part of the py5jupyter (& py5) library
// Copyright (C) 2022-2024 Jim Schmitz
// Copyright (C) 2022-2025 Jim Schmitz
//
// This library is free software: you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by
Expand Down

0 comments on commit 9c66479

Please sign in to comment.