Skip to content

Commit d57cdd6

Browse files
committed
bump django 5.2 and django-oscar to 4.0
1 parent 03a6eec commit d57cdd6

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
python-version: ['3.9', '3.10', '3.11']
18-
django-version: ['3.2', '4.0', '4.2']
17+
python-version: ['3.11', '3.12', '3.13']
18+
django-version: ['5.2']
1919
services:
2020
postgres:
21-
image: postgres:14
21+
image: postgres:16
2222
ports:
2323
- 5432:5432
2424
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='django-oscar-invoices',
6-
version='0.2.2',
6+
version='0.3.0',
77
url='https://github.com/django-oscar/django-oscar-invoices',
88
author='Metaclass Team',
99
author_email='[email protected]',
@@ -17,18 +17,18 @@
1717
'Development Status :: 4 - Beta',
1818
'Environment :: Web Environment',
1919
'Framework :: Django',
20-
'Framework :: Django :: 4.0',
20+
'Framework :: Django :: 5.0',
2121
'Intended Audience :: Developers',
2222
'License :: OSI Approved :: BSD License',
2323
'Operating System :: Unix',
2424
'Programming Language :: Python :: 3',
25-
'Programming Language :: Python :: 3.9.18',
25+
'Programming Language :: Python :: 3.11.8',
2626
],
2727
install_requires=[
2828
'phonenumbers',
2929
'pillow',
30-
'django>=3.2',
31-
'django-oscar>=3.2.2',
32-
'django-phonenumber-field>=6.4.0',
30+
'django>=5.2',
31+
'django-oscar>=4.0',
32+
'django-phonenumber-field',
3333
]
3434
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tox]
22
envlist =
3-
py{39}-django{42}
3+
py{311}-django{52}
44

55
[testenv]
66
commands = pytest {posargs}
77
setenv =
88
PYTHONPATH=.
99
deps =
10-
django42: django>=4.2.6
10+
django52: django>=5.2
1111
pytest >= 7.4.4
1212
pytest-django >= 4.7.0
1313
django-webtest>=1.9.11

0 commit comments

Comments
 (0)