8000 :books: update copyright year · pyexcel/pyexcel@78c38a8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 78c38a8

Browse files
committed
📚 update copyright year
1 parent 948a6c6 commit 78c38a8

24 files changed

+24
-24
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2024 by Onni Software Ltd. and its contributors
1+
Copyright (c) 2014-2025 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# -- Project information -----------------------------------------------------
2424

2525
project = 'pyexcel'
26-
copyright = '2014-2024 Onni Software Ltd.'
26+
copyright = '2014-2025 Onni Software Ltd.'
2727
author = 'C.W.'
2828
# The short X.Y version
2929
version = '0.7.2'

examples/basics/convert_xls_to_xlsx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
convert_xls_to_xlsx.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This shows how to use **save_book_as** to convert

examples/basics/jsonify.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
jsonify.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66

examples/basics/read_cell_by_cell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
read_cell_by_cell.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This shows how to use get_sheet() to go through a single

examples/basics/read_column_by_column.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
read_column_by_column.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This shows a pythonic way to use get_sheet to go through a single

examples/basics/read_excel_book.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
read_excel_book.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This shows how to use get_book to go through a multiple

examples/basics/read_row_by_row.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
read_row_by_row.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This shows a pythonic way to use **Reader** class to go through a single

examples/basics/series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
series.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This shows how to use `name_columns_by_row` to get the data in various ways.

examples/basics/write_excel_book.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
write_excel_book.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This shows how to use save_book_as to write a dictionary

examples/cookbook/merge_sheets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
merge_sheets.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This code snippet shows you how to merge files that are scattered in

examples/database/import_xls_into_database_via_sqlalchemy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
import_xls_into_database_via_sqlalchemy.py
33
4-
:copyright: (c) 2014-2017 by Onni Software Ltd.
4+
:copyright: (c) 2014-2025 by Onni Software Ltd.
55
:license: New BSD License, see LICENSE for more details
66
77
This code snippet shows you how to import data from an excel

examples/formatting/formatter01.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
formater01.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This file shows you how to use column format function

examples/formatting/formatter02.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
formatter02.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This example shows you how to use custom formatter function

examples/memoryfile/pyexcel_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
pyexcel_server.py
3-
:copyright: (c) 2014-2017 by Onni Software Ltd.
3+
:copyright: (c) 2014-2025 by Onni Software Ltd.
44
:license: New BSD License, see LICENSE for more details
55
66
This shows how to use pyexcel to handle excel file upload. In order

pyexcel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ nick_name: pyexcel
44
version: 0.7.2
55
current_version: 0.7.2
66
release: 0.7.1
7-
copyright_year: 2014-2024
7+
copyright_year: 2014-2025
88
branch: master
99
is_on_conda: true
1010
setup_use_markers: true

pyexcel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
write data in different excel formats: csv, ods, xls, xlsx
77
and xlsm. It does not support formulas, styles and charts.
88
9-
:copyright: (c) 2014-2022 by Onni Software Ltd.
9+
:copyright: (c) 2014-2025 by Onni Software Ltd.
1010
:license: New BSD License, see LICENSE for more details
1111
"""
1212
from .book import Book

pyexcel/_compact.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Compatibles
66
7-
:copyright: (c) 2014-2022 by Onni Software Ltd.
7+
:copyright: (c) 2014-2025 by Onni Software Ltd.
88
:license: New BSD License, see LICENSE for more details
99
"""
1010
# flake8: noqa

pyexcel/book.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Excel book
66
7-
:copyright: (c) 2014-2022 by Onni Software Ltd.
7+
:copyright: (c) 2014-2025 by Onni Software Ltd.
88
:license: New BSD License, see LICENSE for more details
99
"""
1010
from pyexcel.sheet import Sheet

pyexcel/cookbook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Cookbook for pyexcel
66
7-
:copyright: (c) 2014-2022 by Onni Software Ltd.
7+
:copyright: (c) 2014-2025 by Onni Software Ltd.
88
:license: New BSD License, see LICENSE for more details
99
"""
1010
import os

pyexcel/internal/sheets/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Core functionality of pyexcel, data model
66
7-
:copyright: (c) 2014-2022 by Onni Software Ltd.
7+
:copyright: (c) 2014-2025 by Onni Software Ltd.
88
:license: New BSD License, see LICENSE for more details
99
"""
1010
# flake8: noqa

pyexcel/internal/sheets/formatters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
These utilities help format the content
66
7-
:copyright: (c) 2014-2022 by Onni Software Ltd.
7+
:copyright: (c) 2014-2025 by Onni Software Ltd.
88
:license: New BSD License, see LICENSE for more details
99
"""
1010
import json

pyexcel/internal/sheets/matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Matrix, a data model that accepts any types, spread sheet style
66
of lookup.
77
8-
:copyright: (c) 2014-2022 by Onni Software Ltd.
8+
:copyright: (c) 2014-2025 by Onni Software Ltd.
99
:license: New BSD License, see LICENSE for more details
1010
"""
1111
import copy

pyexcel/sheet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Building on top of matrix, adding named columns and rows support
66
7-
:copyright: (c) 2014-2022 by Onni Software Ltd.
7+
:copyright: (c) 2014-2025 by Onni Software Ltd.
88
:license: New BSD License, see LICENSE for more details
99
"""
1010
import copy

0 commit comments

Comments
 (0)
0