Skip to content

Commit 525dafa

Browse files
TheBukyTheBuky
authored andcommitted
Release Django-Pipeline 2.0.8
Bump the package version and update the package HISTORY
1 parent 616d804 commit 525dafa

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,18 @@ jobs:
1616
django-version: '4.0'
1717
- python-version: '3.6'
1818
django-version: 'main'
19-
- python-version: '4.0'
20-
django-version: 'main'
2119
- python-version: '3.7'
2220
django-version: '4.0'
2321
- python-version: '3.7'
2422
django-version: 'main'
23+
- python-version: 'pypy-3.8'
24+
django-version: 'main'
2525
- python-version: '3.10'
2626
django-version: '2.2'
2727
- python-version: '3.10'
2828
django-version: '3.0'
2929
- python-version: '3.10'
3030
django-version: '3.1'
31-
- python-version: '3.10'
32-
django-version: '3.2'
3331

3432
steps:
3533
- uses: actions/checkout@v2

HISTORY.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ History
66
Unreleased
77
==========
88

9+
2.0.8
10+
=====
11+
12+
* Add tests for **Django 4.0**, **Python 3.9** and **Python 3.10**.
13+
Thank to @kevinmarsh (#739)
14+
* Introduce CODE_OF_CONDUCT.md for the project. Thank to @hugovk (#758)
15+
* Add precision in the documentation for PipelineCachedStorage.
16+
Thank to @gatsinski (#739)
17+
* Edit github actions matrix: django 3.2.9 support python 3.10, remove
18+
python 4.0 (doesn't exist) and exclude pypy-3.8 for django-main.
19+
* Update setup.py with Django 4.0 and Python 3.10
20+
921
2.0.7
1022
=====
1123

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
'Framework :: Django :: 3.0',
2828
'Framework :: Django :: 3.1',
2929
'Framework :: Django :: 3.2',
30+
'Framework :: Django :: 4.0',
3031
'Intended Audience :: Developers',
3132
'License :: OSI Approved :: MIT License',
3233
'Operating System :: OS Independent',
@@ -37,6 +38,7 @@
3738
'Programming Language :: Python :: 3.7',
3839
'Programming Language :: Python :: 3.8',
3940
'Programming Language :: Python :: 3.9',
41+
'Programming Language :: Python :: 3.10',
4042
'Programming Language :: Python :: Implementation :: PyPy',
4143
'Topic :: Utilities',
4244
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[tox]
22
envlist =
3-
pypy3-dj{22,30,31}
4-
py{36,37,38,39}-dj{22,30,31,32}
3+
pypy3-dj{22,30,31,32}
4+
py{36,37,38,39}-dj{22,30,31}
5+
py{36,37,38,39,10}-dj32
56
py{38,39,310}-dj{40,main}
67
docs
78

@@ -37,7 +38,7 @@ deps =
3738
dj30: Django>=3.0,<3.1
3839
dj31: Django>=3.1,<3.2
3940
dj32: Django>=3.2,<3.3
40-
dj40: Django>=4.0.0a1,<4.1
41+
dj40: Django>=4.0,<4.1
4142
djmain: https://github.com/django/django/archive/main.tar.gz
4243
jinja2
4344
coverage
@@ -62,7 +63,7 @@ ignore_errors =
6263
djmain: True
6364

6465
[testenv:docs]
65-
basepython = python3.8
66+
basepython = python3.9
6667
changedir = docs
6768
deps = sphinx
6869
commands =

0 commit comments

Comments
 (0)