Skip to content

Commit 7d76b25

Browse files
committed
Convert copyright and license to Dassault Systemes SE
1 parent eecbfa7 commit 7d76b25

21 files changed

+31
-54
lines changed

LICENSE

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Copyright (c) 2012-2020, NuoDB, Inc.
2-
All rights reserved.
1+
Copyright (c) 2012-2023 Dassault Systemes SE
2+
All Rights Reserved.
33

44
Redistribution and use in source and binary forms, with or without
55
modification, are permitted provided that the following conditions are met:
@@ -9,17 +9,17 @@ modification, are permitted provided that the following conditions are met:
99
* Redistributions in binary form must reproduce the above copyright
1010
notice, this list of conditions and the following disclaimer in the
1111
documentation and/or other materials provided with the distribution.
12-
* Neither the name of NuoDB, Inc. nor the names of its contributors may
13-
be used to endorse or promote products derived from this software
14-
without specific prior written permission.
12+
* Neither the name of Dassault Systemes SE nor the names of its
13+
contributors may be used to endorse or promote products derived from
14+
this software without specific prior written permission.
1515

1616
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
1717
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
1818
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19-
DISCLAIMED. IN NO EVENT SHALL NUODB, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
20-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
22-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
19+
DISCLAIMED. IN NO EVENT SHALL DASSAULT SYSTEMES SE BE LIABLE FOR ANY DIRECT,
20+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2323
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
2424
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
2525
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Makefile

Lines changed: 3 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
1+
# (C) Copyright 2015-2023 Dassault Systemes SE. All rights reserved.
12
#
2-
# Copyright (c) 2015-2021, NuoDB, Inc.
3-
# All rights reserved.
4-
#
5-
# Redistribution and use in source and binary forms, with or without
6-
# modification, are permitted provided that the following conditions are met:
7-
#
8-
# * Redistributions of source code must retain the above copyright
9-
# notice, this list of conditions and the following disclaimer.
10-
# * Redistributions in binary form must reproduce the above copyright
11-
# notice, this list of conditions and the following disclaimer in the
12-
# documentation and/or other materials provided with the distribution.
13-
# * Neither the name of NuoDB, Inc. nor the names of its contributors may
14-
# be used to endorse or promote products derived from this software
15-
# without specific prior written permission.
16-
#
17-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18-
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19-
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20-
# DISCLAIMED. IN NO EVENT SHALL NUODB, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
21-
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22-
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23-
# OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24-
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25-
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26-
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27-
#
3+
# This software is licensed under a BSD 3-Clause License.
4+
# See the LICENSE file provided with this software.
285

296
PYTHON ?= python
307
VIRTUALENV ?= virtualenv

pynuodb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Classes containing the exceptions for reporting errors.
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A module for connecting to a NuoDB database.
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/crypt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
""" Manage encryption
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/cursor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A module for housing the Cursor class.
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/datatype.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A module for housing the datatype classes.
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/encodedsession.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""A module for housing the EncodedSession class.
22
3-
(C) Copyright 2013-2021 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/entity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Basic "entity" support.
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/exception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Classes containing the exceptions for reporting errors.
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Contains the constants for sending the protocol to the server.
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/result_set.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
""" NuoDB Python Driver result set
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Establish and manage a session with an agent or engine.
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/statement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""NuoDB Python driver SQL statement
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

pynuodb/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Utilities for the NuoDB Python driver
22
3-
(C) Copyright 2013-2020 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"""Set up the NuoDB Python Driver package
44
5-
(C) Copyright 2013-2021 NuoDB, Inc. All Rights Reserved.
5+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
66
77
This software is licensed under a BSD 3-Clause License.
88
See the LICENSE file provided with this software.

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
(C) Copyright 2013-2021 NuoDB, Inc. All Rights Reserved.
2+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
33
44
This software is licensed under a BSD 3-Clause License.
55
See the LICENSE file provided with this software.

tests/nuodb_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
(C) Copyright 2013-2021 NuoDB, Inc. All Rights Reserved.
2+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
33
44
This software is licensed under a BSD 3-Clause License.
55
See the LICENSE file provided with this software.

tests/nuodb_basic_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
"""
4-
(C) Copyright 2013-2021 NuoDB, Inc. All Rights Reserved.
4+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
55
66
This software is licensed under a BSD 3-Clause License.
77
See the LICENSE file provided with this software.

tests/nuodb_huge_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
"""
3-
(C) Copyright 2013-2021 NuoDB, Inc. All Rights Reserved.
3+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
44
55
This software is licensed under a BSD 3-Clause License.
66
See the LICENSE file provided with this software.

tests/nuodb_statement_management_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
"""
4-
(C) Copyright 2013-2021 NuoDB, Inc. All Rights Reserved.
4+
(C) Copyright 2013-2023 Dassault Systemes SE. All Rights Reserved.
55
66
This software is licensed under a BSD 3-Clause License.
77
See the LICENSE file provided with this software.

0 commit comments

Comments
 (0)