Skip to content

Commit

Permalink
fix all dependency issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nrccua-timr committed Jul 25, 2024
1 parent 7047d00 commit 50d3bd1
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 10 deletions.
15 changes: 15 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ History
=======


v0.20.23 (2024-07-25)

* Update install requires grpcio==1.62.2 & grpcio-status==1.62.2.


v0.20.22 (2024-07-25)

* Update install require numpy==1.26.4.


v0.20.21 (2024-07-25)

* Fix broken dependencies.


v0.20.20 (2024-07-25)

* Update mlflow, flask, flask-cors & werkzeug to remove vulnerability alert.
Expand Down
5 changes: 5 additions & 0 deletions aioradio/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,21 @@ fakeredis==2.23.3
faust-cchardet==2.1.19
flask==3.0.3
flask-cors==4.0.1
grpcio==1.62.2
grpcio-status==1.62.2
haversine==2.8.1
httpx==0.27.0
mandrill==1.0.60
mlflow==2.14.3
moto==4.2.14
numpy==1.26.4
openpyxl==3.0.10
orjson==3.9.15
pandas==2.2.2
pkginfo==1.10.0
polars==1.2.1
pre-commit==3.7.1
protobuf==4.25.4
psycopg2-binary==2.9.9
pyarrow==15.0.2
pylint==3.2.6
Expand Down
24 changes: 14 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

from setuptools import setup

with open('README.md', 'r') as fileobj:
with open('README.md', 'r', encoding='utf8') as fileobj:
long_description = fileobj.read()

setup(name='aioradio',
version='0.20.20',
version='0.20.23',
description='Generic asynchronous i/o python utilities for AWS services (SQS, S3, DynamoDB, Secrets Manager), Redis, MSSQL (pyodbc), JIRA and more',
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -21,40 +21,44 @@
],
install_requires=[
'cython>=0.29.33',
'aioboto3==12.4.0',
'aioboto3==13.1.1',
'aiojobs>=1.0.0',
'backoff>=2.1.2',
'botocore==1.34.69',
'boto3==1.34.69',
'botocore==1.34.131',
'boto3==1.34.131',
'ddtrace>=0.60.1',
'faust-cchardet>=2.1.18',
'fakeredis>=2.20.0',
'grpcio==1.62.2',
'grpcio-status==1.62.2',
'haversine>=2.8.0',
'httpx>=0.23.0',
'mandrill>=1.0.60',
'mlflow>=2.10.2',
'numpy>=1.19',
'numpy==1.26.4',
'openpyxl==3.0.10',
'orjson>=3.6.8',
'pandas>=1.3.5',
'pkginfo==1.10.0'
'polars>=0.19.12',
'protobuf==4.25.4',
'pyarrow>=13.0.0',
'pysmb>=1.2.7',
'python-json-logger>=2.0.2',
'redis>=5.0.1'
],
include_package_data=True,
tests_require=[
'flask==2.1.2',
'flask-cors>=3.0.10',
'moto==3.1.18',
'flask==3.0.3',
'flask-cors>=4.0.1',
'moto==4.2.14',
'pre-commit>=2.15.0',
'pylint>=2.13.8',
'pytest>=7.0.1',
'pytest-asyncio>=0.15.1',
'pytest-cov>=3.0.0',
'typing_extensions>=4.10.0',
'werkzeug==2.1.2'
'werkzeug==3.0.3'
],
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit 50d3bd1

Please sign in to comment.