Skip to content

Commit

Permalink
support for py3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Škoda committed Aug 14, 2023
1 parent ee93070 commit 038e3a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History
=======

0.6.0 (2023-08-14)
------------------

* support for python3.11

0.5.0 (2023-05-21)
------------------

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jinja2==3.1.2

typing-extensions==4.4.0; python_version < '3.8'
pandas==1.2.0; python_version < '3.8'
pandas==1.5.0; python_version >= '3.8'
pandas==1.5.1; python_version >= '3.8'
boto3==1.24.89
cachetools_ext==0.0.8
botocache==0.0.4
awswrangler==2.16.1
awswrangler==2.20.1
joblib==1.2.0
tqdm==4.64.1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

requirements = [
'Click>=7.0', 'pandas>=1.0.5,<2', 'boto3>=1.24,<2', 'cachetools_ext>=0.0.8,<0.1.0', 'botocache>=0.0.4,<0.1.0',
'awswrangler==2.16.1', 'joblib>=1.0.0', 'tqdm>=4,<5',
'awswrangler>=2.16.1,<=2.20.1', 'joblib>=1.0.0', 'tqdm>=4,<5',
'typing-extensions>=4.0,<5; python_version < \'3.8\''
]

Expand All @@ -32,6 +32,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
description="API for accessing Lake crypto market data",
entry_points={
Expand Down

0 comments on commit 038e3a9

Please sign in to comment.