From: Harmon Date: Sat, 1 Jan 2022 13:14:26 +0000 (-0600) Subject: Update copyright years to include 2022 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7469bf76bb9bf754b0d2d58aec157a166480069c;p=tweepy.git Update copyright years to include 2022 --- diff --git a/LICENSE b/LICENSE index 3c16ccf..45ca552 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ MIT License -Copyright (c) 2009-2021 Joshua Roesslein +Copyright (c) 2009-2022 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 d19e16c..4cf95bd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,7 +63,7 @@ master_doc = 'index' # General information about the project. project = 'tweepy' -copyright = '2009-2021, Joshua Roesslein' +copyright = '2009-2022, 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 1b4bfca..4a93eb3 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. """ diff --git a/tweepy/api.py b/tweepy/api.py index 512a025..2ccf71a 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. import contextlib diff --git a/tweepy/asynchronous/__init__.py b/tweepy/asynchronous/__init__.py index 72ff5c6..8db8ec7 100644 --- a/tweepy/asynchronous/__init__.py +++ b/tweepy/asynchronous/__init__.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. """ diff --git a/tweepy/asynchronous/streaming.py b/tweepy/asynchronous/streaming.py index 8d812b0..e2ee23f 100644 --- a/tweepy/asynchronous/streaming.py +++ b/tweepy/asynchronous/streaming.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. import asyncio diff --git a/tweepy/auth.py b/tweepy/auth.py index cf90c68..88d0ba8 100644 --- a/tweepy/auth.py +++ b/tweepy/auth.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. import logging diff --git a/tweepy/cache.py b/tweepy/cache.py index 9c53771..76c5816 100644 --- a/tweepy/cache.py +++ b/tweepy/cache.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. import datetime diff --git a/tweepy/client.py b/tweepy/client.py index 7e24a64..85a400a 100644 --- a/tweepy/client.py +++ b/tweepy/client.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from collections import namedtuple diff --git a/tweepy/cursor.py b/tweepy/cursor.py index d3ccdd4..ff51af3 100644 --- a/tweepy/cursor.py +++ b/tweepy/cursor.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from math import inf diff --git a/tweepy/errors.py b/tweepy/errors.py index b27a0ca..f417d03 100644 --- a/tweepy/errors.py +++ b/tweepy/errors.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. try: diff --git a/tweepy/list.py b/tweepy/list.py index a49264a..3c36ed5 100644 --- a/tweepy/list.py +++ b/tweepy/list.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/media.py b/tweepy/media.py index 4920b2e..aec6435 100644 --- a/tweepy/media.py +++ b/tweepy/media.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping diff --git a/tweepy/mixins.py b/tweepy/mixins.py index 53bfd8b..ecd5b57 100644 --- a/tweepy/mixins.py +++ b/tweepy/mixins.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from collections.abc import Mapping diff --git a/tweepy/models.py b/tweepy/models.py index 245aa7a..e1d9084 100644 --- a/tweepy/models.py +++ b/tweepy/models.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from email.utils import parsedate_to_datetime diff --git a/tweepy/pagination.py b/tweepy/pagination.py index 0e79b0c..0e0b41c 100644 --- a/tweepy/pagination.py +++ b/tweepy/pagination.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from math import inf diff --git a/tweepy/parsers.py b/tweepy/parsers.py index 916866c..18833c8 100644 --- a/tweepy/parsers.py +++ b/tweepy/parsers.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. import json as json_lib diff --git a/tweepy/place.py b/tweepy/place.py index 3a102d7..6b9d08f 100644 --- a/tweepy/place.py +++ b/tweepy/place.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/poll.py b/tweepy/poll.py index affd49b..659a3e3 100644 --- a/tweepy/poll.py +++ b/tweepy/poll.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/space.py b/tweepy/space.py index 93f2a80..2762d6c 100644 --- a/tweepy/space.py +++ b/tweepy/space.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/streaming.py b/tweepy/streaming.py index 6191bae..f18b28f 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 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 e3d5b48..050c1e3 100644 --- a/tweepy/tweet.py +++ b/tweepy/tweet.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/user.py b/tweepy/user.py index 20d4776..998b316 100644 --- a/tweepy/user.py +++ b/tweepy/user.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2009-2021 Joshua Roesslein +# Copyright 2009-2022 Joshua Roesslein # See LICENSE for details. from tweepy.mixins import DataMapping, HashableID diff --git a/tweepy/utils.py b/tweepy/utils.py index 4aa1c70..4eec41a 100644 --- a/tweepy/utils.py +++ b/tweepy/utils.py @@ -1,5 +1,5 @@ # Tweepy -# Copyright 2010-2021 Joshua Roesslein +# Copyright 2010-2022 Joshua Roesslein # See LICENSE for details. import datetime