Codebase list django-ipware / 4038fbbe-2155-4f04-8265-70b6227319f4/main
New upstream release. Debian Janitor 1 year, 11 months ago
9 changed file(s) with 53 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
1010 runs-on: ubuntu-latest
1111 strategy:
1212 matrix:
13 python-version: [3.6, 3.7, 3.8, pypy3]
14 django-version: [2.2, 3.0, 3.1, 3.2]
13 python-version: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3]
14 django-version: [2.2, 3.0, 3.1, 3.2, 4.0]
15 exclude:
16 # excludes list
17 - python-version: 3.6
18 django-version: 4.0
19 - python-version: 3.7
20 django-version: 4.0
21 - python-version: pypy3
22 django-version: 4.0
1523
1624 steps:
1725 - uses: actions/checkout@v2
1313 runs-on: ubuntu-latest
1414 strategy:
1515 matrix:
16 python-version: [3.6, 3.7, 3.8, pypy3]
17 django-version: [2.2, 3.0, 3.1, 3.2]
16 python-version: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3]
17 django-version: [2.2, 3.0, 3.1, 3.2, 4.0]
18 exclude:
19 # excludes list
20 - python-version: 3.6
21 django-version: 4.0
22 - python-version: 3.7
23 django-version: 4.0
24 - python-version: pypy3
25 django-version: 4.0
1826
1927 steps:
2028 - uses: actions/checkout@v2
66 branches:
77 - master
88
9
109 jobs:
1110 build:
1211 name: Python ${{ matrix.python-version }}, django ${{ matrix.django-version }}
1312 runs-on: ubuntu-latest
1413 strategy:
1514 matrix:
16 python-version: [3.6, 3.7, 3.8, pypy3]
17 django-version: [2.2, 3.0, 3.1, 3.2]
18
15 python-version: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3]
16 django-version: [2.2, 3.0, 3.1, 3.2, 4.0]
17 exclude:
18 # excludes list
19 - python-version: 3.6
20 django-version: 4.0
21 - python-version: 3.7
22 django-version: 4.0
23 - python-version: pypy3
24 django-version: 4.0
1925 steps:
2026 - uses: actions/checkout@v2
2127 - name: setup python
0 # 4.0.2
1
2 Enhancement:
3
4 - Added support for Python 3.10 (Thx joshuadavidthomas)
5
6 ## 4.0.1
7
8 Enhancement:
9
10 - Added test for django 4.0 (Thx PetrDlouhy)
11
012 ## 4.0.0
113
214 Enhancement:
0 django-ipware (4.0.2-1) UNRELEASED; urgency=low
1
2 * New upstream release.
3
4 -- Debian Janitor <janitor@jelmer.uk> Tue, 07 Jun 2022 07:03:55 -0000
5
06 django-ipware (4.0.0-1) unstable; urgency=medium
17
28 [ Ondřej Nový ]
44 __url__ = 'https://github.com/un33k/django-ipware'
55 __license__ = 'MIT'
66 __copyright__ = 'Copyright 2020 Val Neekman @ Neekware Inc.'
7 __version__ = '4.0.0'
7 __version__ = '4.0.2'
00 from django.apps import AppConfig
1 from django.utils.translation import ugettext_lazy as _
1 from django.utils.translation import gettext_lazy as _
22
33
44 class IPwareConfig(AppConfig):
0 Django==3.2.5
0 Django==4.0
11 pycodestyle==2.7.0
22 flake8==3.9.2
33 twine==3.4.2
6666 'Development Status :: 5 - Production/Stable',
6767 'Intended Audience :: Developers',
6868 'Natural Language :: English',
69 'License :: OSI Approved :: Apache Software License',
69 'License :: OSI Approved :: MIT License',
7070 'Programming Language :: Python',
7171 'Programming Language :: Python :: 3',
7272 'Programming Language :: Python :: 3.6',
7373 'Programming Language :: Python :: 3.7',
7474 'Programming Language :: Python :: 3.8',
7575 'Programming Language :: Python :: 3.9',
76 'Programming Language :: Python :: 3.10',
7677 ],
7778 cmdclass={},
7879 tests_require=test_requirements,