Codebase list django-ipware / 8ab9859
Update upstream source from tag 'upstream/4.0.2' Update to upstream version '4.0.2' with Debian dir 6a1a4858dc94d7b67a878c69fd32ddebbf68b846 Lena Voytek 1 year, 10 months ago
6 changed file(s) with 29 addition(s) and 7 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]
15 python-version: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3]
1716 django-version: [2.2, 3.0, 3.1, 3.2, 4.0]
1817 exclude:
1918 # excludes list
0 # 4.0.2
1
2 Enhancement:
3
4 - Added support for Python 3.10 (Thx joshuadavidthomas)
5
06 ## 4.0.1
17
28 Enhancement:
44 __url__ = 'https://github.com/un33k/django-ipware'
55 __license__ = 'MIT'
66 __copyright__ = 'Copyright 2020 Val Neekman @ Neekware Inc.'
7 __version__ = '4.0.1'
7 __version__ = '4.0.2'
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,