Skip to content

Commit

Permalink
v2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
domdinicola committed Jul 24, 2023
1 parent fba78f1 commit 3277ab9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Release 2.5
-----------
* add support Django 4.2
* add support Python 3.11


Release 2.4
-----------
* add support Django 4
Expand Down
2 changes: 1 addition & 1 deletion src/concurrency/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = 'sax'

VERSION = __version__ = "2.4"
VERSION = __version__ = "2.5"
NAME = 'django-concurrency'
10 changes: 8 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = d{22,32,40,41}-py{38,39,310}-{pg,sqlite,mysql}
envlist = d{32,40,41,42}-py{39,310,311}-{pg,sqlite,mysql}


[pytest]
Expand All @@ -26,7 +26,13 @@ markers =

[testenv]
;install_command=pip install {opts} {packages}
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH PYTHONDONTWRITEBYTECODE PGHOST PGPORT
passenv =
TRAVIS
TRAVIS_JOB_ID
TRAVIS_BRANCH
PYTHONDONTWRITEBYTECODE
PGHOST
PGPORT

whitelist_externals =
/usr/local/bin/psql
Expand Down

0 comments on commit 3277ab9

Please sign in to comment.