Skip to content

Commit

Permalink
Update dependencies across the board
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Mar 26, 2022
1 parent e75fe5b commit fda01ca
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ INFLUXDB_HTTP_PORT=8086
INFLUXDB_RPC_PORT=8088

# MongoDB
MONGODB_VERSION=4.4
MONGODB_VERSION=5.0
MONGODB_PORT=27017

# Grafana
GRAFANA_VERSION=8.3.6
GRAFANA_VERSION=8.4.4
GRAFANA_PORT=3000


Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
python-version: [ "3.6", "3.7", "3.8", "3.9" ]
mosquitto-version: [ "1.6", "2.0" ]
influxdb-version: [ "1.7", "1.8" ]
grafana-version: [ "6.7.6", "7.5.15", "8.3.6" ]
grafana-version: [ "6.7.6", "7.5.15", "8.4.4" ]
include:
- os: ubuntu-latest
path: ~/.cache/pip
Expand Down
6 changes: 3 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ in progress
- Because accessing dashboards by slug has been removed with Grafana 8, Kotori
will now use the slug-name of the data channel for all of Grafana's ``uid``,
``name`` and ``title`` fields.
- CI: Update to Grafana 8.2.5
- Improve decoding fractional epoch timestamps
- Update to Twisted 22.1.0
- CI: Update to Grafana 7.5.15 and 8.3.6
- Update to Twisted 22.2.0
- CI: Update to Grafana 7.5.15 and 8.4.4
- CI: Update to MongoDB 5.0


.. _kotori-0.26.12:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Kotori
:target: https://github.com/influxdata/influxdb
:alt: Supported InfluxDB versions

.. image:: https://img.shields.io/badge/MongoDB-3.x%2C%204.x-blue.svg
.. image:: https://img.shields.io/badge/MongoDB-3.x%20--%205.x-blue.svg
:target: https://github.com/mongodb/mongo
:alt: Supported MongoDB versions

Expand Down
21 changes: 11 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,23 @@
requires = [

# Core
'Twisted[tls]==22.1.0',
'Twisted[tls]==22.2.0',
'pyOpenSSL>=16.2.0',
'six>=1.15.0',
'pyramid==1.9.4',
'pyramid==1.10.8',
'pyramid_jinja2>=2.8,<3',
'cornice>=5.0.3,<6',
'simplejson>=3.17.2,<4',
'Jinja2>=2.11.2,<3',
'MarkupSafe>=1,<2',
'Bunch>=1.0.1,<2',
'munch>=2.5.0,<3',
'appdirs>=1.4.3,<2',
'json-store>=3.0,<4',
'python-dateutil>=2.8.0,<3',
'arrow>=0.17.0,<1',
'arrow>=0.17.0,<2',
'funcy>=1.15,<2',
'attrs>=20.2.0,<21',
'attrs>=20.2.0,<22',

# Bus adapters
'paho-mqtt>=1.5.1,<2',
Expand All @@ -47,8 +48,8 @@
'cryptography>=2.9.2',
'certifi>=2020.6.20',

'service_identity>=18.1.0,<19',
'idna>=2.10,<3',
'service_identity>=18.1.0,<22',
'idna>=2.10,<4',
'pyasn1>=0.4.8,<0.5',
'pyasn1-modules>=0.2.8,<0.3',

Expand All @@ -62,11 +63,11 @@
'grafana_api_client==0.2.0',
#'grafana-dashboard-builder==0.1.0a7', # evaluated, but not suitable
#'txmongo==16.3.0',
'pymongo>=3.11.0,<4',
'pymongo>=3.11.0,<5',
],
'daq_geospatial': [
'Geohash>=1.0,<2',
'geopy>=1.12.0,<2',
'geopy>=1.12.0,<3',
'Beaker>=1.9.0,<2',
'tqdm>=4.19.8,<5',
],
Expand All @@ -87,7 +88,7 @@
'pandas>=0.25,<1.3',
#'numpy>=1.18,<1.20',
numpy_spec,
'XlsxWriter>=1.3.6,<1.4',
'XlsxWriter>=1.3.6,<4',
],

'plotting': [
Expand All @@ -106,7 +107,7 @@
# ----
# HDF5
# "PyTables" requires HDF5 libraries
'tables>=3.5.2,<3.7',
'tables>=3.5.2,<4',
'h5py>=2.10.0,<4',

# NetCDF (Network Common Data Form)
Expand Down

0 comments on commit fda01ca

Please sign in to comment.