Changeset - 86cde1911b69
[Not reviewed]
Merge default
0 3 0
Thomas De Schampheleire - 5 years ago 2021-05-27 21:37:47
thomas.de_schampheleire@nokia.com
merge stable
3 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
.hgtags
Show inline comments
 
@@ -77,6 +77,7 @@ bfa0b0a814644f0af3f492d17a9ed169cc3b89fe
 
d01a8e92936dbd62c76505432f60efba432e9397 0.5.1
 
aa0a637fa6f635a5e024fa56b19ed2a2dacca857 0.5.2
 
9f5ca9088067618d79129d224c35c818bd2d2f12 0.6.0
 
a22edac2be58eaf68d1940d4dfeb88fadbabb43a 0.6.1
 
22bfca5da6f56738f6220d24bb6ce2f9bc4f9b1e 0.6.2
 
213450cbdc11fff8508ba25101dc05ab74048e55 0.6.3
 
7324ff1929d558075500ca483889b28e904ef934 0.7.0
MANIFEST.in
Show inline comments
 
@@ -9,12 +9,13 @@ include           LICENSE.md
 
include           MIT-Permissive-License.txt
 
include           README.rst
 
include           conftest.py
 
include           dev_requirements.txt
 
include           development.ini
 
include           pytest.ini
 
include           pytype_requirements.txt
 
include           requirements.txt
 
include           tox.ini
 
recursive-include docs *
 
recursive-include init.d *
 
recursive-include kallithea/alembic *
 
include           kallithea/bin/ldap_sync.conf
kallithea/__init__.py
Show inline comments
 
@@ -33,13 +33,13 @@ import sys
 
import celery
 

	
 

	
 
if sys.version_info < (3, 6):
 
    raise Exception('Kallithea requires python 3.6 or later')
 

	
 
VERSION = (0, 6, 99)
 
VERSION = (0, 7, 0)
 
BACKENDS = {
 
    'hg': 'Mercurial repository',
 
    'git': 'Git repository',
 
}
 

	
 
CELERY_APP = celery.Celery()  # needed at import time but is lazy and can be configured later
0 comments (0 inline, 0 general)