Skip to content

Commit 6663b48

Browse files
authored
Merge branch 'jrief:master' into patch-1
2 parents 1ee6758 + 7ce7a32 commit 6663b48

File tree

6 files changed

+30
-24
lines changed

6 files changed

+30
-24
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
strategy:
2525
matrix:
26-
python-version: ["3.9", "3.10", "3.11", "3.12"]
26+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2727
node-version: ["18.x"]
2828
django-version: ["4.2.*", "5.0.*", "5.1.*"]
2929
exclude: # https://docs.djangoproject.com/en/5.0/faq/install/#what-python-version-can-i-use-with-django

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Release history of [django-admin-sortable2](https://github.com/jrief/django-admin-sortable2/)
44

5+
### 2.2.5
6+
- Fix sorting in parallel requests.
7+
- Add support for Python 3.13.
8+
59
### 2.2.4
610
- Fix: Selected ordering is not always preserved when using "Save as new" in inline admin.
711

adminsortable2/__init__.py

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

package-lock.json

Lines changed: 19 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"devDependencies": {
99
"@types/sortablejs": "^1.15.8",
1010
"esbuild": "^0.21.2",
11-
"playwright": "^1.44.0",
11+
"playwright": "^1.51.0",
1212
"sortablejs": "^1.15.2",
1313
"tslib": "^2.6.2",
1414
"typescript": "^4.9.5",

testapp/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ charset-normalizer==3.3.2
55
jinja2
66
idna==3.3
77
iniconfig==2.0.0
8-
greenlet==3.0.3
8+
greenlet==3.1.1
99
packaging==21.3
10-
playwright==1.43.0
10+
playwright==1.51.0
1111
pluggy==1.5.0
1212
py==1.11.0
13-
pyee==11.1.0
13+
pyee==12.1.1
1414
pyparsing==3.0.9
1515
pytest==7.4.4
1616
pytest-base-url==2.1.0
1717
pytest-django==4.8.0
1818
pytest-mock==3.14.0
19-
pytest-playwright==0.5.0
19+
pytest-playwright==0.7.0
2020
python-slugify==6.1.2
2121
requests==2.32.0
2222
sqlparse==0.5.0

0 commit comments

Comments
 (0)