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

Commit

Permalink
add cpyquickhelper
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jun 29, 2017
1 parent 1499cd6 commit 8703268
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion _doc/examples/automation/execute_student_projects.py
Expand Up @@ -27,7 +27,7 @@
this = this.split("ensae_teaching_cs")[0].rstrip("\\/")
for module in ["jyquickhelper", "pyquickhelper", "pyensae",
"pyrsslocal", "pymmails", "pymyinstall",
"ensae_teaching_cs"]:
"ensae_teaching_cs", "cpyquickhelper"]:
try:
exec("import %s" % module)
except ImportError:
Expand Down
Expand Up @@ -55,7 +55,7 @@
this = this.split("ensae_teaching_cs")[0].rstrip("\\/")
for module in ["jyquickhelper", "pyquickhelper", "pyensae",
"pyrsslocal", "pymmails", "pymyinstall",
"ensae_teaching_cs"]:
"ensae_teaching_cs", "cpyquickhelper"]:
try:
exec("import %s" % module)
except ImportError:
Expand Down
3 changes: 2 additions & 1 deletion _doc/examples/automation/jenkins_setup.py
Expand Up @@ -24,7 +24,8 @@
this = this.split("ensae_teaching_cs")[0].rstrip("\\/")
for module in ["jyquickhelper", "pyquickhelper", "pyensae",
"pyrsslocal", "pymmails", "pymyinstall",
"ensae_teaching_cs", "tkinterquickhelper"]:
"ensae_teaching_cs", "tkinterquickhelper",
"cpyquickhelper"]:
try:
exec("import %s" % module)
except ImportError:
Expand Down
4 changes: 3 additions & 1 deletion _doc/examples/automation/publish_lectures.py
Expand Up @@ -36,7 +36,8 @@
this = this.split("ensae_teaching_cs")[0].rstrip("\\/")
for module in ["jyquickhelper", "pyquickhelper", "pyensae",
"pyrsslocal", "pymmails", "pymyinstall",
"ensae_teaching_cs", "tkinterquickhelper"]:
"ensae_teaching_cs", "tkinterquickhelper",
"cpyquickhelper"]:
try:
exec("import %s" % module)
except ImportError:
Expand Down Expand Up @@ -90,6 +91,7 @@
modules = [
"actuariat_python",
"code_beatrix",
"cpyquickhelper",
"ensae_projects",
"jupytalk",
"jyquickhelper",
Expand Down
2 changes: 1 addition & 1 deletion _doc/examples/automation/send_mails.py
Expand Up @@ -22,7 +22,7 @@
this = this.split("ensae_teaching_cs")[0].rstrip("\\/")
for module in ["jyquickhelper", "pyquickhelper", "pyensae",
"pyrsslocal", "pymmails", "pymyinstall",
"ensae_teaching_cs"]:
"ensae_teaching_cs", "cpyquickhelper"]:
try:
exec("import %s" % module)
except ImportError:
Expand Down
1 change: 1 addition & 0 deletions src/ensae_teaching_cs/automation/ftp_publish_helper.py
Expand Up @@ -202,6 +202,7 @@ def publish_teachings_to_web(login, ftpsite="ftp.xavierdupre.fr", google_id=None
rootw2="/lesenfantscodaient.fr", folder_status=".",
layout=[("html", "helpsphinx")],
modules=["pyquickhelper",
"cpyquickhelper",
"jyquickhelper",
"tkinterquickhelper",
"pyensae",
Expand Down
2 changes: 1 addition & 1 deletion src/ensae_teaching_cs/automation/jenkins_helper.py
Expand Up @@ -62,7 +62,7 @@ def default_jenkins_jobs(filter=None, neg_filter=None, root=None):
modules = ["pyquickhelper", "jyquickhelper", "python3_module_template", "pymmails", "pymyinstall",
"pyensae", "pyrsslocal", "pysqllike", "ensae_projects",
"ensae_teaching_cs", "code_beatrix", "actuariat_python", "mlstatpy", "jupytalk",
"teachpyx", "tkinterquickhelper"]
"teachpyx", "tkinterquickhelper", "cpyquickhelper"]
for c in modules:
yml.append(pattern % c)

Expand Down

0 comments on commit 8703268

Please sign in to comment.