Skip to content

Automatic replacement of '202x Ingram Micro' for '2025 CloudBlue' #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ site_url: https://github.com/cloudblue/lib-rql
repo_name: cloudblue/lib-rql
repo_url: https://github.com/cloudblue/lib-rql
edit_uri: ""
copyright: Copyright © 2023 Ingram Micro. All Rights Reserved.
copyright: Copyright © 2025 CloudBlue. All Rights Reserved.
extra:
generator: false
social:
Expand Down
2 changes: 1 addition & 1 deletion py_rql/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#

from py_rql.parser import RQLParser
Expand Down
2 changes: 1 addition & 1 deletion py_rql/cast.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
from decimal import Decimal

Expand Down
2 changes: 1 addition & 1 deletion py_rql/constants.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#

RQL_ANY_SYMBOL = '*'
Expand Down
2 changes: 1 addition & 1 deletion py_rql/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#


Expand Down
2 changes: 1 addition & 1 deletion py_rql/filter_cls.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
from cachetools import LFUCache

Expand Down
2 changes: 1 addition & 1 deletion py_rql/grammar.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#

# flake8: noqa
Expand Down
2 changes: 1 addition & 1 deletion py_rql/helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
def extract_value(obj, prop):
current = obj
Expand Down
2 changes: 1 addition & 1 deletion py_rql/operators.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
from operator import ( # noqa: F401
eq,
Expand Down
2 changes: 1 addition & 1 deletion py_rql/parser.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#

from threading import Lock
Expand Down
2 changes: 1 addition & 1 deletion py_rql/transformer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import functools

Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_constants.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_filter_cls.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_init.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import time
from threading import Thread
Expand Down
2 changes: 1 addition & 1 deletion tests/test_operators.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
2 changes: 1 addition & 1 deletion tests/test_parser/constants.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#

from py_rql.constants import (
Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser/test_caching.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser/test_comparison.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#

from functools import partial
Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser/test_listing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest
from lark.exceptions import LarkError
Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser/test_logical.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#

from functools import partial
Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser/test_ordering.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest
from lark.exceptions import LarkError
Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser/test_searching.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest
from lark.exceptions import LarkError
Expand Down
2 changes: 1 addition & 1 deletion tests/test_parser/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#

from py_rql.transformer import BaseRQLTransformer
Expand Down
2 changes: 1 addition & 1 deletion tests/test_transformer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
2 changes: 1 addition & 1 deletion tests/test_transformer/test_comparison.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_transformer/test_list.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_transformer/test_logical.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
from unittest.mock import call

Expand Down
2 changes: 1 addition & 1 deletion tests/test_transformer/test_search.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.
#
import pytest

Expand Down
Loading