diff --git a/earwigbot/__init__.py b/earwigbot/__init__.py index 51ff5b8..a37f45c 100644 --- a/earwigbot/__init__.py +++ b/earwigbot/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2015 Ben Kurtovic +# Copyright (C) 2009-2017 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -30,7 +30,7 @@ details. This documentation is also available `online """ __author__ = "Ben Kurtovic" -__copyright__ = "Copyright (C) 2009-2016 Ben Kurtovic" +__copyright__ = "Copyright (C) 2009-2017 Ben Kurtovic" __license__ = "MIT License" __version__ = "0.3.dev0" __email__ = "ben.kurtovic@gmail.com" diff --git a/earwigbot/wiki/site.py b/earwigbot/wiki/site.py index e9fb38a..63c4fee 100644 --- a/earwigbot/wiki/site.py +++ b/earwigbot/wiki/site.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2015 Ben Kurtovic +# Copyright (C) 2009-2017 Ben Kurtovic # # 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/earwigbot/wiki/sitesdb.py b/earwigbot/wiki/sitesdb.py index d17c965..cddc24c 100644 --- a/earwigbot/wiki/sitesdb.py +++ b/earwigbot/wiki/sitesdb.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2015 Ben Kurtovic +# Copyright (C) 2009-2017 Ben Kurtovic # # 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/setup.py b/setup.py index 7a302c1..71cddd8 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2016 Ben Kurtovic +# Copyright (C) 2009-2017 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -26,8 +26,8 @@ from setuptools import setup, find_packages from earwigbot import __version__ required_deps = [ - "PyYAML >= 3.11", # Parsing config files - "mwparserfromhell >= 0.4.3", # Parsing wikicode for manipulation + "PyYAML >= 3.12", # Parsing config files + "mwparserfromhell >= 0.5", # Parsing wikicode for manipulation ] extra_deps = { @@ -39,16 +39,16 @@ extra_deps = { "oursql >= 0.9.3.2", # Interfacing with MediaWiki databases ], "copyvios": [ - "beautifulsoup4 >= 4.4.1", # Parsing/scraping HTML - "cchardet >= 1.0.0", # Encoding detection for BeautifulSoup - "lxml >= 3.6.0", # Faster parser for BeautifulSoup - "nltk >= 3.2.1", # Parsing sentences to split article content + "beautifulsoup4 >= 4.6.0", # Parsing/scraping HTML + "cchardet >= 2.1.1", # Encoding detection for BeautifulSoup + "lxml >= 3.8.0", # Faster parser for BeautifulSoup + "nltk >= 3.2.4", # Parsing sentences to split article content "oauth2 >= 1.9.0", # Interfacing with Yahoo! BOSS Search "pdfminer >= 20140328", # Extracting text from PDF files - "tldextract >= 2.0.1", # Getting domains for the multithreaded workers + "tldextract >= 2.1.0", # Getting domains for the multithreaded workers ], "time": [ - "pytz >= 2016.4", # Handling timezones for the !time IRC command + "pytz >= 2017.2", # Handling timezones for the !time IRC command ], }