Skip to content

Commit

Permalink
[QA] Bump copyright years
Browse files Browse the repository at this point in the history
  • Loading branch information
JNRowe committed Feb 14, 2020
1 parent b2d2c18 commit f51c06b
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 39 deletions.
8 changes: 4 additions & 4 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
"""conf - Sphinx configuration information."""
# Copyright © 2011-2019 James Rowe <jnrowe@gmail.com>
# Copyright © 2011-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

import os
import sys
Expand Down Expand Up @@ -55,7 +55,7 @@

project = 'pyisbn'
author = 'James Rowe'
copyright = f'2007-2019 {author}'
copyright = f'2007-2020 {author}'

release = pyisbn._version.dotted
version = release.rsplit('.', 1)[0]
Expand Down
6 changes: 3 additions & 3 deletions extra/_pyisbn
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#compdef pyisbn pyisbn.py
# pyisbn - ZSH completion support for pyisbn
# Copyright © 2012-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2012-2019 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

# Most of this file is generated from pyisbn/tool.py, but feel free to
# customise it! If you make improvements, open a pull request against
Expand Down
6 changes: 3 additions & 3 deletions extra/tool.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#! /usr/bin/env python3
"""tool - A simple pyisbn interface for the command line."""
# Copyright © 2013-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2013-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

import argparse
from typing import Callable
Expand Down
6 changes: 3 additions & 3 deletions pyisbn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@
.. [#] Previous Python releases would have assumed it was octal representation
of a number
"""
# Copyright © 2007-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2007-2020 James Rowe <jnrowe@gmail.com>
# notconfusing <isalix@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
# pyisbn is free software: you can redistribute it and/or modify it under the
Expand All @@ -36,8 +38,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

from . import _version

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#! /usr/bin/env python3
"""setup.py - Setuptools tasks and config for pyisbn."""
# Copyright © 2007-2019 James Rowe <jnrowe@gmail.com>
# Copyright © 2007-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

from typing import List

Expand Down
6 changes: 3 additions & 3 deletions tests/data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
"""data - ISBNs for use in tests."""
# Copyright © 2012-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2012-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

import json
from typing import Dict, List
Expand Down
6 changes: 3 additions & 3 deletions tests/test_functions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
"""test_functions - Test function interface."""
# Copyright © 2012-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2012-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

from hypothesis import given
from hypothesis.strategies import sampled_from
Expand Down
6 changes: 3 additions & 3 deletions tests/test_isbn.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
"""test_isbn - Test Isbn class."""
# Copyright © 2012-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2012-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

from sys import version_info
from typing import Tuple
Expand Down
6 changes: 3 additions & 3 deletions tests/test_isbn10.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
"""test_isbn10 - Test Isbn10 class."""
# Copyright © 2012-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2012-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

from hypothesis import example, given
from hypothesis.strategies import sampled_from
Expand Down
6 changes: 3 additions & 3 deletions tests/test_isbn13.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
"""test_isbn13 - Test Isbn13 class."""
# Copyright © 2012-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2012-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

from hypothesis import example, given
from hypothesis.strategies import sampled_from
Expand Down
4 changes: 2 additions & 2 deletions tests/test_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"""test_meta - Tests for project maintenance."""
# Copyright © 2012-2019 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
# pyisbn is free software: you can redistribute it and/or modify it under the
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

import json
import os
Expand Down
6 changes: 3 additions & 3 deletions tests/test_regressions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
"""test_regressions - Test for regressions."""
# Copyright © 2012-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2012-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

from pytest import mark, raises

Expand Down
6 changes: 3 additions & 3 deletions tests/test_sbn.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#
"""test_sbn - Test Sbn class."""
# Copyright © 2012-2018 James Rowe <jnrowe@gmail.com>
# Copyright © 2012-2020 James Rowe <jnrowe@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of pyisbn.
#
Expand All @@ -15,8 +17,6 @@
#
# You should have received a copy of the GNU General Public License along with
# pyisbn. If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-License-Identifier: GPL-3.0+

from hypothesis import example, given
from hypothesis.strategies import sampled_from
Expand Down

0 comments on commit f51c06b

Please sign in to comment.