Skip to content

Commit

Permalink
fix path2list bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Škoda committed Aug 18, 2023
1 parent f322e02 commit 34a67f3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# The type of runner that the job will run on
strategy:
matrix:
python-versions: [3.7, '3.10']
python-versions: [3.7, '3.10', '3.11']
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
Expand Down
File renamed without changes.
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.2 (2023-08-18)
------------------

* fix dependency constraints causing _path2list bug

0.6.1 (2023-08-15)
------------------

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pandas==1.5.1; python_version >= '3.8'
boto3==1.24.89
cachetools_ext==0.0.8
botocache==0.0.4
awswrangler==2.20.1
awswrangler==2.19.0
joblib==1.2.0
tqdm==4.64.1
wheel==0.41.1
2 changes: 1 addition & 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,<=2.20.1', 'joblib>=1.0.0', 'tqdm>=4,<5',
'awswrangler>=2.16.1,<2.20.0', 'joblib>=1.0.0', 'tqdm>=4,<5',
'typing-extensions>=4.0,<5; python_version < \'3.8\''
]

Expand Down

0 comments on commit 34a67f3

Please sign in to comment.