diff --git a/README.md b/README.md index ad8fe0a..1645f9a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Pyinotify * License : MIT -* Project URL : [http://github.com/seb-m/pyinotify](http://github.com/seb-m/pyinotify) -* Project Wiki : [http://github.com/seb-m/pyinotify/wiki](http://github.com/seb-m/pyinotify/wiki) +* Project URL : [https://github.com/seb-m/pyinotify](https://github.com/seb-m/pyinotify) +* Project Wiki : [https://github.com/seb-m/pyinotify/wiki](https://github.com/seb-m/pyinotify/wiki) * API Documentation: [http://seb-m.github.com/pyinotify](http://seb-m.github.com/pyinotify) diff --git a/old/NEWS b/old/NEWS index 958b69a..6f1530a 100644 --- a/old/NEWS +++ b/old/NEWS @@ -1,5 +1,5 @@ Changes are now documented on this page: -http://github.com/seb-m/pyinotify/wiki/Recent-Developments +https://github.com/seb-m/pyinotify/wiki/Recent-Developments Changes in version 0.8.0: diff --git a/python2/examples/tutorial_asyncnotifier.py b/python2/examples/tutorial_asyncnotifier.py index 5037fd4..784ad88 100644 --- a/python2/examples/tutorial_asyncnotifier.py +++ b/python2/examples/tutorial_asyncnotifier.py @@ -1,6 +1,6 @@ # AsyncNotifier example from tutorial # -# See: http://github.com/seb-m/pyinotify/wiki/Tutorial +# See: https://github.com/seb-m/pyinotify/wiki/Tutorial # import asyncore import pyinotify diff --git a/python2/examples/tutorial_notifier.py b/python2/examples/tutorial_notifier.py index 501f3a2..62e0473 100644 --- a/python2/examples/tutorial_notifier.py +++ b/python2/examples/tutorial_notifier.py @@ -1,6 +1,6 @@ # Notifier example from tutorial # -# See: http://github.com/seb-m/pyinotify/wiki/Tutorial +# See: https://github.com/seb-m/pyinotify/wiki/Tutorial # import pyinotify diff --git a/python2/examples/tutorial_threadednotifier.py b/python2/examples/tutorial_threadednotifier.py index 3635987..ee3856f 100644 --- a/python2/examples/tutorial_threadednotifier.py +++ b/python2/examples/tutorial_threadednotifier.py @@ -1,6 +1,6 @@ # ThreadedNotifier example from tutorial # -# See: http://github.com/seb-m/pyinotify/wiki/Tutorial +# See: https://github.com/seb-m/pyinotify/wiki/Tutorial # import pyinotify diff --git a/python2/pyinotify.py b/python2/pyinotify.py index d2f0816..1b2ce38 100755 --- a/python2/pyinotify.py +++ b/python2/pyinotify.py @@ -1314,7 +1314,7 @@ def __daemonize(self, pid_file=None, stdin=os.devnull, stdout=os.devnull, def fork_daemon(): # Adapted from Chad J. Schroeder's recipe - # @see http://code.activestate.com/recipes/278731/ + # @see https://code.activestate.com/recipes/278731/ pid = os.fork() if (pid == 0): # parent 2 diff --git a/python3/pyinotify.py b/python3/pyinotify.py index bc24313..d92c0a2 100755 --- a/python3/pyinotify.py +++ b/python3/pyinotify.py @@ -1299,7 +1299,7 @@ def __daemonize(self, pid_file=None, stdin=os.devnull, stdout=os.devnull, def fork_daemon(): # Adapted from Chad J. Schroeder's recipe - # @see http://code.activestate.com/recipes/278731/ + # @see https://code.activestate.com/recipes/278731/ pid = os.fork() if (pid == 0): # parent 2 diff --git a/setup.py b/setup.py index 15d68ab..c5049e3 100755 --- a/setup.py +++ b/setup.py @@ -110,8 +110,8 @@ def should_compile_ext_mod(): license='MIT License', platforms='Linux', classifiers=classif, - url='http://github.com/seb-m/pyinotify', - download_url='http://pypi.python.org/pypi/pyinotify', + url='https://github.com/seb-m/pyinotify', + download_url='https://pypi.org/project/pyinotify/', ext_modules=ext_mod, py_modules=['pyinotify'], package_dir=package_dir,