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

Commit

Permalink
new modules
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jun 3, 2020
1 parent 11f652a commit bb7f568
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
5 changes: 5 additions & 0 deletions _doc/sphinxdoc/source/ml2a/td2a_manip_dataframe.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,8 @@ DataFrame
* `csvkit <https://csvkit.readthedocs.io/en/latest/index.html>`_
* `geopandas <https://geopandas.org/>`_
(pour manipuler des coordinnées géographiques)

*Modules - grands jeux de données*

* `pandas_streaming <https://github.com/sdpython/pandas_streaming/>`_
* `vaex <https://docs.vaex.io/en/latest/installing.html>`_
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ appliqués aux séries temporelles :
* `pyflux <http://pyflux.readthedocs.io/en/latest/>`_ (la documentation est plutôt bien faite)
* `fbprophet <https://github.com/facebookincubator/prophet/tree/master/python>`_
(requires `pystan <http://pystan.readthedocs.io/en/latest/index.html>`_)
* `tensorflow <https://www.tensorflow.org/tutorials/structured_data/time_series>`_
* `Rob J Hyndman software <https://robjhyndman.com/software/>`_
(disponible uniquement en R)
* `influxdb <https://github.com/influxdata/influxdb>`_ (An Open-Source Time Series Database)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ est inconnue à l'avance.

*Modules*

* `StreamLib <https://github.com/jiecchen/StreamLib>`_
* `pandas_streaming <https://github.com/sdpython/pandas_streaming/>`_
* `streamparse <https://github.com/Parsely/streamparse>`_
* `vaex <https://docs.vaex.io/en/latest/installing.html>`_
* `StreamLib <https://github.com/jiecchen/StreamLib>`_ (mas maintenu)
12 changes: 9 additions & 3 deletions src/ensae_teaching_cs/automation/jenkins_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import sys
from pyquickhelper.loghelper import noLOG
from pyquickhelper.jenkinshelper import setup_jenkins_server_yml
from pyquickhelper.jenkinshelper.yaml_helper import load_yaml
from .teaching_modules import get_teaching_modules


Expand Down Expand Up @@ -131,12 +132,17 @@ def default_jenkins_jobs(filter=None, neg_filter=None, root=None, platform=None)
raise TypeError("{0} - {1}".format(row, type(row)))
return new_res
else:
yml_data = load_yaml(pattern % '_automation', context={})
pyth = yml_data[0]['python']
res = []
for pyt in pyth:
v = pyt['VERSION'] + 0.01
vers = (int(v), int((v - int(v)) * 10))
res.extend(["standalone [local_pypi] [py%d%d]" % vers,
("pymyinstall [update_modules] [py%d%d]" % vers,
"H H(0-1) * * 5")])
res.extend(('yml', c, 'H H(0-1) * * %d' % (i % 7))
for i, c in enumerate(yml))
res += ["standalone [local_pypi] [py%d%d]" % sys.version_info[:2],
("pymyinstall [update_modules] [py%d%d]" % sys.version_info[:2],
"H H(0-1) * * 5")]
return res


Expand Down

0 comments on commit bb7f568

Please sign in to comment.