Skip to content

Commit da0f675

Browse files
Bob Booij-LiewesBBooijLiewes
authored andcommitted
Bump version to 2.0.0 in prep for Pypi release
This version release includes suppport for django version 3 fully and django 4.0 and 4.1. To get 4.2 to work would require some additiona investigation.
1 parent a73f676 commit da0f675

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change log
22

3+
## v2.0.0
4+
5+
* Include support for Django versions 3 fully and 4 until (not including) Django 4.2
6+
* Add Github workflow testing support to the codebase
7+
38
## v1.1.2
49

510
* Make sure deprecation warning doesn't trigger in Django 3 (#12).

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import find_packages, setup
66

77
test_deps = [
8-
'psycopg2-binary <= 2.8.0',
8+
'psycopg2-binary <= 2.8.6',
99
'pytest >= 6.0.2',
1010
'pytest-pythonpath>=0.7.3',
1111
'pytest-echo>=1.7.1',
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name='django-relativedelta',
24-
version='1.1.2',
24+
version='2.0.0',
2525
package_dir={'': 'src'},
2626
packages=find_packages('src'),
2727
include_package_data=True,

tox.ini

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,19 @@ pep8ignore = * ALL
5757

5858
[testenv]
5959
passenv =
60-
- PYTHON_VERSION
61-
- PYTHONDONTWRITEBYTECODE
62-
- MYSQL_PASSWORD
63-
- MYSQL_HOST
64-
- MYSQL_PORT
65-
- MYSQL_USER
66-
- PGDATABASE
67-
- PGHOST
68-
- PGHOSTADDR
69-
- PGPORT
70-
- PGUSER
71-
- PGPASSWORD
72-
- PGPASS
60+
PYTHON_VERSION
61+
PYTHONDONTWRITEBYTECODE
62+
MYSQL_PASSWORD
63+
MYSQL_HOST
64+
MYSQL_PORT
65+
MYSQL_USER
66+
PGDATABASE
67+
PGHOST
68+
PGHOSTADDR
69+
PGPORT
70+
PGUSER
71+
PGPASSWORD
72+
PGPASS
7373

7474

7575
whitelist_externals =

0 commit comments

Comments
 (0)