Skip to content

Commit 01c667a

Browse files
committed
Update license notices to 2025
1 parent 6bfa337 commit 01c667a

File tree

12 files changed

+25
-38
lines changed

12 files changed

+25
-38
lines changed

neon_users_service/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

neon_users_service/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

neon_users_service/databases/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

neon_users_service/databases/mongodb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

neon_users_service/databases/sqlite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

neon_users_service/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

neon_users_service/mq_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

neon_users_service/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

setup.py

Lines changed: 14 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,17 @@
1-
# NEON AI (TM) SOFTWARE, Software Development Kit & Application Framework
2-
# All trademark and other rights reserved by their respective owners
3-
# Copyright 2008-2022 Neongecko.com Inc.
4-
# Contributors: Daniel McKnight, Guy Daniels, Elon Gasper, Richard Leeds,
5-
# Regina Bloomstine, Casimiro Ferreira, Andrii Pernatii, Kirill Hrymailo
6-
# BSD-3 License
7-
# Redistribution and use in source and binary forms, with or without
8-
# modification, are permitted provided that the following conditions are met:
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright notice,
12-
# this list of conditions and the following disclaimer in the documentation
13-
# and/or other materials provided with the distribution.
14-
# 3. Neither the name of the copyright holder nor the names of its
15-
# contributors may be used to endorse or promote products derived from this
16-
# software without specific prior written permission.
17-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
19-
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20-
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21-
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22-
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23-
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
24-
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25-
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26-
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27-
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1+
# Copyright (C) 2025 Neongecko.com Inc.
2+
#
3+
# This program is free software: you can redistribute it and/or modify
4+
# it under the terms of the GNU Affero General Public License as
5+
# published by the Free Software Foundation, either version 3 of the
6+
# License, or (at your option) any later version.
7+
#
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU Affero General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Affero General Public License
14+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2815

2916
from setuptools import setup, find_packages
3017
from os import getenv, path

tests/test_databases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

tests/test_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2024 Neongecko.com Inc.
1+
# Copyright (C) 2025 Neongecko.com Inc.
22
#
33
# This program is free software: you can redistribute it and/or modify
44
# it under the terms of the GNU Affero General Public License as

0 commit comments

Comments
 (0)