Skip to content

Commit 1fa0da8

Browse files
Mikuláš Poulmikicz
authored andcommitted
Update supported python/django, bump version
1 parent 264114c commit 1fa0da8

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
py:
18+
- "3.11"
1819
- "3.10"
1920
- "3.9"
2021
- "3.8"

CHANGELOG.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
Changelog - pytracking
22
======================
33

4-
0.4.4 - September 23rd 2021
4+
0.4.5 - February 27th 2023
5+
------------------------
6+
7+
Added support for Django 4.2 and Python 3.11, drop support for old Pythons and Djangos.
8+
9+
0.4.4 - September 23rd 2022
510
------------------------
611

712
Added support for Django 4.1, drop support for old Pythons and Djangos.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pytracking - Email Open and Click Tracking Library
1515

1616
:Authors:
1717
Resulto Developpement Web Inc., QueraTeam, Mikuláš Poul
18-
:Version: 0.4.4
18+
:Version: 0.4.5
1919

2020
This library provides a set of functions that provide open and click tracking
2121
when sending emails. This is particularly useful if you rely on an Email

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
setup(
2929
name="pytracking2",
30-
version="0.4.4",
30+
version="0.4.5",
3131
description="Email open and click tracking",
3232
long_description=long_description,
3333
url="https://github.com/mikicz/pytracking",
@@ -46,9 +46,10 @@
4646
"Programming Language :: Python :: 3.8",
4747
"Programming Language :: Python :: 3.9",
4848
"Programming Language :: Python :: 3.10",
49+
"Programming Language :: Python :: 3.11",
4950
],
5051
keywords="email open click tracking",
5152
packages=find_packages(".", include=("pytracking", "pytracking.*")),
5253
extras_require=EXTRA_REQUIRES,
53-
python_requires='>=3.5',
54+
python_requires='>=3.7',
5455
)

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[tox]
22
envlist =
33
py{37,38,39,310}-dj{32},
4-
py{38,39,310}-dj{40,41}
4+
py{38,39,310,311}-dj{40,41,42}
55

66
[gh]
77
python =
88
"3.7" = py37
99
"3.8" = py38
1010
"3.9" = py39
1111
"3.10" = py310
12+
"3.11" = py311
1213

1314
[testenv]
1415
extras = all
@@ -19,4 +20,5 @@ deps=
1920
dj32: Django>=3.2,<3.3
2021
dj40: Django>=4.0,<4.1
2122
dj41: Django>=4.1,<4.2
23+
dj42: https://github.com/django/django/archive/stable/4.2.x.tar.gz#egg=django
2224
passenv = PYTHONPATH

0 commit comments

Comments
 (0)