diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2021-11-28 17:59:51 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri@ouroboros.rocks> | 2021-11-28 17:59:51 +0100 |
commit | c05125b35934d25b44f3bf932420bc0f7f950093 (patch) | |
tree | b17d2e1feefce538400be6ad919f48706c9df2a1 | |
parent | c661ea043a17c7af70c64f46f4e64a6013a0c1aa (diff) | |
download | rumba-c05125b35934d25b44f3bf932420bc0f7f950093.tar.gz rumba-c05125b35934d25b44f3bf932420bc0f7f950093.zip |
prototypes: Remove patch for influxdb install
Influxdbclient pypi now includes the proxy patch, there is no more
need to manually patch it.
-rw-r--r-- | rumba/prototypes/ouroboros.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/rumba/prototypes/ouroboros.py b/rumba/prototypes/ouroboros.py index 2c16ea5..ed79b02 100644 --- a/rumba/prototypes/ouroboros.py +++ b/rumba/prototypes/ouroboros.py @@ -271,11 +271,6 @@ class Experiment(mod.Experiment): python_cmd + " -m easy_install pip", python_cmd + " -m pip install 'influxdb-client[ciso]'"] - # Patch the influxDB install from my repository. Temporary until 1.20 is in PyPi - cmds += ["git clone https://github.com/dstaesse/influxdb-client-python.git", - "sudo cp influxdb-client-python/influxdb_client/client/influxdb_client.py" # no comma: concat! - " ~/venv/lib/" + python_version + "/site-packages/influxdb_client/client/influxdb_client.py"] - # Clone the metrics exporter repo and get the exporter cmds += ["git clone https://ouroboros.rocks/git/ouroboros-metrics", "cp ouroboros-metrics/exporters-influxdb/pyExporter/oexport.py .", |