Update 0.7
authorRadek Czajka <rczajka@rczajka.pl>
Mon, 19 Jun 2023 20:24:15 +0000 (22:24 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Mon, 19 Jun 2023 22:29:16 +0000 (00:29 +0200)
CHANGELOG.md
setup.py
tox.ini

index 98ea96e..817a8dd 100644 (file)
@@ -2,6 +2,10 @@
 
 This document records all notable changes to fnpdjango.
 
+## 0.7 (2023-06-19)
+
+- Testing for Django up to 4.2.
+
 ## 0.6 (2022-07-22)
 
 - Support for Django up to 4.0.
index 6f3d8ee..1865b06 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ def whole_trees(package_dir, paths):
 
 setup(
     name='fnpdjango',
-    version='0.6',
+    version='0.7',
     author='Radek Czajka',
     author_email='radekczajka@nowoczesnapolska.org.pl',
     url='',
@@ -32,11 +32,11 @@ setup(
         'fnpdjango.management.commands': ['babel.cfg'],
     },
     install_requires=[
-        'Django>=1.11,<4.1',
+        'Django>=2.0,<5.0',
     ],
     extras_require={
         'textile': [
-            'textile==2.3.16',
+            'textile>=4.0.2',
         ],
         'pipeline': [
             'pipeline',
diff --git a/tox.ini b/tox.ini
index c21675b..75ad130 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -9,7 +9,9 @@ envlist=clear,
     d30-py{36,37,38,39},
     d31-py{36,37,38,39},
     d32-py{36,37,38,39,310},
-    d40-py{38,39,310}
+    d40-py{38,39,310},
+    d41-py{38,39,310,311},
+    d42-py{38,39,310,311}
     stats
 
 [testenv]
@@ -23,6 +25,8 @@ deps=
     d31: Django>=3.1,<3.2
     d32: Django>=3.2,<4.0
     d40: Django>=4.0,<4.1
+    d41: Django~=4.1
+    d42: Django~=4.2
     coverage
 extras=
     textile