Merge branch 'hotfix/1.0.1'
This commit is contained in:
commit
b6e9875977
3 changed files with 5 additions and 3 deletions
|
@ -53,7 +53,7 @@ master_doc = 'index'
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = 'larigira'
|
project = 'larigira'
|
||||||
copyright = '2015-2016, boyska'
|
copyright = '2015-2017, boyska'
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
# |version| and |release|, also used in various other places throughout the
|
# |version| and |release|, also used in various other places throughout the
|
||||||
|
@ -62,7 +62,7 @@ copyright = '2015-2016, boyska'
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '1.0'
|
version = '1.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '1.0'
|
release = '1.0.1'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
@ -41,6 +41,8 @@ def get_suggested_dirs():
|
||||||
|
|
||||||
def get_suggested_scripts():
|
def get_suggested_scripts():
|
||||||
base = get_conf()['SCRIPTS_PATH']
|
base = get_conf()['SCRIPTS_PATH']
|
||||||
|
if not base or not os.path.isdir(base):
|
||||||
|
return []
|
||||||
fnames = [f for f in os.listdir(base)
|
fnames = [f for f in os.listdir(base)
|
||||||
if os.access(os.path.join(base, f), os.R_OK | os.X_OK)]
|
if os.access(os.path.join(base, f), os.R_OK | os.X_OK)]
|
||||||
return fnames
|
return fnames
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -29,7 +29,7 @@ class PyTest(TestCommand):
|
||||||
sys.exit(errno)
|
sys.exit(errno)
|
||||||
|
|
||||||
setup(name='larigira',
|
setup(name='larigira',
|
||||||
version='1.0',
|
version='1.0.1',
|
||||||
description='A radio automation based on MPD',
|
description='A radio automation based on MPD',
|
||||||
long_description=read('README.rst'),
|
long_description=read('README.rst'),
|
||||||
author='boyska',
|
author='boyska',
|
||||||
|
|
Loading…
Reference in a new issue