mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-26 17:14:42 +00:00
Merge pull request #391 from linkchecker/dev-version
Bump version in git to 10.0.0.dev0
This commit is contained in:
commit
e6e969f975
2 changed files with 3 additions and 3 deletions
|
|
@ -20,7 +20,7 @@ Function to check for updates.
|
|||
import os
|
||||
from .configuration import Version as CurrentVersion
|
||||
from .url import get_content
|
||||
from distutils.version import StrictVersion
|
||||
from distutils.version import LooseVersion
|
||||
|
||||
# Use the Freecode submit file as source since that file gets updated
|
||||
# only when releasing a new version.
|
||||
|
|
@ -72,4 +72,4 @@ def get_online_version():
|
|||
|
||||
def is_newer_version(version):
|
||||
"""Check if given version is newer than current version."""
|
||||
return StrictVersion(version) > StrictVersion(CurrentVersion)
|
||||
return LooseVersion(version) > LooseVersion(CurrentVersion)
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -47,7 +47,7 @@ from distutils.core import Distribution
|
|||
from distutils.command.build import build
|
||||
|
||||
# the application version
|
||||
AppVersion = "9.4.0"
|
||||
AppVersion = "10.0.0.dev0"
|
||||
# the application name
|
||||
AppName = "LinkChecker"
|
||||
Description = "check links in web documents or full websites"
|
||||
|
|
|
|||
Loading…
Reference in a new issue