From ccc95269c1071f6c1f65698bf73c851472defba9 Mon Sep 17 00:00:00 2001 From: Harmon Date: Sun, 1 Jan 2023 10:33:14 -0600 Subject: [PATCH] Update copyright years to include 2023 --- LICENSE | 2 +- docs/conf.py | 2 +- tweepy/__init__.py | 2 +- tweepy/api.py | 2 +- tweepy/asynchronous/__init__.py | 2 +- tweepy/asynchronous/client.py | 2 +- tweepy/asynchronous/pagination.py | 2 +- tweepy/asynchronous/streaming.py | 2 +- tweepy/auth.py | 2 +- tweepy/cache.py | 2 +- tweepy/client.py | 2 +- tweepy/cursor.py | 2 +- tweepy/direct_message_event.py | 2 +- tweepy/errors.py | 2 +- tweepy/list.py | 2 +- tweepy/media.py | 2 +- tweepy/mixins.py | 2 +- tweepy/models.py | 2 +- tweepy/pagination.py | 2 +- tweepy/parsers.py | 2 +- tweepy/place.py | 2 +- tweepy/poll.py | 2 +- tweepy/space.py | 2 +- tweepy/streaming.py | 2 +- tweepy/tweet.py | 2 +- tweepy/user.py | 2 +- tweepy/utils.py | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/LICENSE b/LICENSE index 45ca552..ad18c02 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ MIT License -Copyright (c) 2009-2022 Joshua Roesslein +Copyright (c) 2009-2023 Joshua Roesslein Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/conf.py b/docs/conf.py index cefca33..4436aec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -69,7 +69,7 @@ master_doc = 'index' # General information about the project. project = 'tweepy' -copyright = '2009-2022, Joshua Roesslein' +copyright = '2009-2023, Joshua Roesslein' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the diff --git a/tweepy/__init__.py b/tweepy/__init__.py index 72b5315..c8b950b 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. """ diff --git a/tweepy/api.py b/tweepy/api.py index 29c4976..5279c74 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. import contextlib diff --git a/tweepy/asynchronous/__init__.py b/tweepy/asynchronous/__init__.py index a3cf999..4281ef5 100644 --- a/tweepy/asynchronous/__init__.py +++ b/tweepy/asynchronous/__init__.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. """ diff --git a/tweepy/asynchronous/client.py b/tweepy/asynchronous/client.py index 19749e9..9eb001d 100644 --- a/tweepy/asynchronous/client.py +++ b/tweepy/asynchronous/client.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. try: diff --git a/tweepy/asynchronous/pagination.py b/tweepy/asynchronous/pagination.py index 3442470..598c604 100644 --- a/tweepy/asynchronous/pagination.py +++ b/tweepy/asynchronous/pagination.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from math import inf diff --git a/tweepy/asynchronous/streaming.py b/tweepy/asynchronous/streaming.py index 0bf6a49..3adc363 100644 --- a/tweepy/asynchronous/streaming.py +++ b/tweepy/asynchronous/streaming.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. import asyncio diff --git a/tweepy/auth.py b/tweepy/auth.py index 722aa9c..93fc302 100644 --- a/tweepy/auth.py +++ b/tweepy/auth.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. import logging diff --git a/tweepy/cache.py b/tweepy/cache.py index 76c5816..bfb87b3 100644 --- a/tweepy/cache.py +++ b/tweepy/cache.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. import datetime diff --git a/tweepy/client.py b/tweepy/client.py index 47efd33..440a155 100644 --- a/tweepy/client.py +++ b/tweepy/client.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from collections import namedtuple diff --git a/tweepy/cursor.py b/tweepy/cursor.py index ff51af3..1db73e1 100644 --- a/tweepy/cursor.py +++ b/tweepy/cursor.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from math import inf diff --git a/tweepy/direct_message_event.py b/tweepy/direct_message_event.py index 008baa7..882c62c 100644 --- a/tweepy/direct_message_event.py +++ b/tweepy/direct_message_event.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/errors.py b/tweepy/errors.py index 673a145..030bad2 100644 --- a/tweepy/errors.py +++ b/tweepy/errors.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. import requests diff --git a/tweepy/list.py b/tweepy/list.py index b2a5044..ad54605 100644 --- a/tweepy/list.py +++ b/tweepy/list.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/media.py b/tweepy/media.py index e4348bd..d6c7f7e 100644 --- a/tweepy/media.py +++ b/tweepy/media.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping diff --git a/tweepy/mixins.py b/tweepy/mixins.py index 5884ff4..9f39f07 100644 --- a/tweepy/mixins.py +++ b/tweepy/mixins.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from collections.abc import Mapping diff --git a/tweepy/models.py b/tweepy/models.py index 93905df..f29361e 100644 --- a/tweepy/models.py +++ b/tweepy/models.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from email.utils import parsedate_to_datetime diff --git a/tweepy/pagination.py b/tweepy/pagination.py index 004d22c..aa66699 100644 --- a/tweepy/pagination.py +++ b/tweepy/pagination.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from math import inf diff --git a/tweepy/parsers.py b/tweepy/parsers.py index 18833c8..a6ca97d 100644 --- a/tweepy/parsers.py +++ b/tweepy/parsers.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. import json as json_lib diff --git a/tweepy/place.py b/tweepy/place.py index b4f9256..c51b1be 100644 --- a/tweepy/place.py +++ b/tweepy/place.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/poll.py b/tweepy/poll.py index 45f2749..6bb4bd3 100644 --- a/tweepy/poll.py +++ b/tweepy/poll.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/space.py b/tweepy/space.py index a53fc16..f40be52 100644 --- a/tweepy/space.py +++ b/tweepy/space.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/streaming.py b/tweepy/streaming.py index db635bf..3098ab1 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. # Appengine users: https://developers.google.com/appengine/docs/python/sockets/#making_httplib_use_sockets diff --git a/tweepy/tweet.py b/tweepy/tweet.py index 0e896c4..96b872c 100644 --- a/tweepy/tweet.py +++ b/tweepy/tweet.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. import warnings diff --git a/tweepy/user.py b/tweepy/user.py index cfb6a46..f5a52a5 100644 --- a/tweepy/user.py +++ b/tweepy/user.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2022 Joshua Roesslein +# Copyright 2009-2023 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/utils.py b/tweepy/utils.py index 9e17a16..83f1805 100644 --- a/tweepy/utils.py +++ b/tweepy/utils.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2010-2022 Joshua Roesslein +# Copyright 2010-2023 Joshua Roesslein # See LICENSE for details. import datetime -- 2.25.1