Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fix a few things
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Nov 7, 2019
1 parent 2936eeb commit cfd2505
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -33,8 +33,8 @@

.. _l-README:

_check_python_install
=====================
check_python_install
====================

The project tries different installation instruction for
a couple of packages difficult to install.
Expand Down
7 changes: 6 additions & 1 deletion _doc/sphinxdoc/source/conf.py
Expand Up @@ -6,7 +6,7 @@

sys.path.insert(0, os.path.abspath(os.path.join(os.path.split(__file__)[0])))

set_sphinx_variables(__file__, "_check_python_install", "Xavier Dupré", 2019,
set_sphinx_variables(__file__, "check_python_install", "Xavier Dupré", 2019,
"alabaster", alabaster.get_path(), locals(), add_extensions=['alabaster'],
extlinks=dict(issue=('https://github.com/sdpython/_check_python_install/issues/%s', 'issue')))

Expand All @@ -17,3 +17,8 @@
nblinks = {
'slideshowrst': notebooks_urls + 'slide_show.html',
}

epkg_dictionary.update({
'cartopy': 'https://scitools.org.uk/cartopy/docs/latest/',
})

4 changes: 2 additions & 2 deletions _doc/sphinxdoc/source/index.rst
@@ -1,6 +1,6 @@

_check_python_install
=====================
check_python_install
====================

.. only:: html

Expand Down
2 changes: 1 addition & 1 deletion _unittests/ut_module/test_code_style.py
Expand Up @@ -13,7 +13,7 @@ class TestCodeStyle(ExtTestCase):
def test_style_src(self):
thi = os.path.abspath(os.path.dirname(__file__))
src_ = os.path.normpath(os.path.join(
thi, "..", "..", "python3_module_template"))
thi, "..", "..", "check_python_install"))
check_pep8(src_, skip=[])

def test_style_test(self):
Expand Down
2 changes: 1 addition & 1 deletion _unittests/ut_module/test_setup.py
Expand Up @@ -5,7 +5,7 @@
from contextlib import redirect_stdout
from io import StringIO
from pyquickhelper.pycode import ExtTestCase
from _check_python_install import check, _setup_hook
from check_python_install import check, _setup_hook


class TestSetup(ExtTestCase):
Expand Down
@@ -1,7 +1,7 @@
# coding: utf-8
"""
@file
@brief Module *_check_python_install*.
@brief Module *check_python_install*.
Checks other modules installation on CI.
"""

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -8,7 +8,7 @@
# settings
#########

project_var_name = "_check_python_install"
project_var_name = "check_python_install"
project_owner = "sdpython"
versionPython = "%s.%s" % (sys.version_info.major, sys.version_info.minor)
path = "Lib/site-packages/" + project_var_name
Expand Down

0 comments on commit cfd2505

Please sign in to comment.