Skip to content

Commit

Permalink
Merge pull request #219 from fabfuel/feature/upgrade-dependencies
Browse files Browse the repository at this point in the history
Adjustments for Python 3.12
  • Loading branch information
fabfuel authored Nov 24, 2023
2 parents 2376a45 + 53e47f7 commit 59a8c0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@ def readme():
dependencies = [
'click>=7.1.2, <9',
'click-log==0.3.2',
'botocore>=1.17.47',
'boto3>=1.14.47',
'botocore>=1.32.6',
'boto3>=1.29.6',
'future',
'requests<2.30.0',
'dictdiffer==0.8.0',
'awscli',
'requests',
'dictdiffer>=0.9.0',
]

setup(
Expand Down

0 comments on commit 59a8c0f

Please sign in to comment.