Skip to content

Commit 0e10972

Browse files
authored
Merge pull request #28 from dabapps/replace-deprecated-django-fsm
Replace deprecated django-fsm
2 parents 42eb936 + fe562ad commit 0e10972

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,8 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
python: ["3.8", "3.9", "3.10", "3.11"]
13-
django: ["3.2", "4.0", "4.1", "4.2"]
14-
exclude:
15-
- python: "3.11"
16-
django: "3.2"
17-
- python: "3.11"
18-
django: "4.0"
12+
python: ["3.11", "3.12"]
13+
django: ["4.2", "5.0", "5.1", "5.2"]
1914

2015
steps:
2116
- uses: actions/checkout@v2

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
boto3==1.28.57
2-
Django==4.2.5
3-
django-fsm==2.8.1
1+
boto3==1.39.7
2+
Django==5.2.4
3+
django-fsm-2==4.0.0

s3_file_uploads/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.9'
1+
__version__ = '0.1.0'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
author_email = '[email protected]'
1717
license = 'BSD'
1818
install_requires = [
19-
'boto3>=1.28.57',
20-
'Django>=3.2',
21-
'django-fsm>=2.8.1'
19+
'boto3>=1.39',
20+
'Django>=4.2',
21+
'django-fsm-2>=4.0.0'
2222
]
2323
long_description_content_type="text/markdown",
2424
long_description = """

0 commit comments

Comments
 (0)