Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,8 @@ jobs:

strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
django: ["3.2", "4.0", "4.1", "4.2"]
exclude:
- python: "3.11"
django: "3.2"
- python: "3.11"
django: "4.0"
python: ["3.11", "3.12"]
django: ["4.2", "5.0", "5.1", "5.2"]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
boto3==1.28.57
Django==4.2.5
django-fsm==2.8.1
boto3==1.39.7
Django==5.2.4
django-fsm-2==4.0.0
2 changes: 1 addition & 1 deletion s3_file_uploads/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.9'
__version__ = '0.0.10'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
install_requires = [
'boto3>=1.28.57',
'Django>=3.2',
'django-fsm>=2.8.1'
'django-fsm-2>=4.0.0'
]
long_description_content_type="text/markdown",
long_description = """
Expand Down