Skip to content

Commit 25a69cb

Browse files
committed
merges 0.8.x, version 0.9.4
2 parents 709447e + e000585 commit 25a69cb

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

README.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ Branch `0.7.x` - is the latest version supporting Django 1.5
1212

1313
Branch `0.8.x` - transitional version for the upgrade of the database to Django 1.7
1414

15-
Branch `master` supports Django 1.7
15+
Branch `0.9.x` supports Django 1.7
16+
17+
Branch `0.10.x` support Django 1.8
1618

1719
How to contribute
1820
=================
@@ -40,7 +42,6 @@ License, copyright and trademarks
4042
=================================
4143
Askbot software is licensed under GPL, version 3.
4244

43-
Copyright Askbot S.p.A and the project contributors, 2010-2015.
45+
Copyright Askbot S.p.A and the project contributors, 2010-2020.
4446

4547
"Askbot" is a trademark and service mark registered in the United States, number 4323777.
46-

askbot/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
import os
88
import platform
99

10-
VERSION = (0, 9, 3)
10+
VERSION = (0, 9, 4)
1111

1212
default_app_config = 'askbot.apps.AskbotConfig'
1313

1414
#keys are module names used by python imports,
1515
#values - the package qualifier to use for pip
1616
REQUIREMENTS = {
17-
'appconf': 'django-appconf',
17+
'appconf': 'django-appconf<=1.0.3',
1818
'akismet': 'akismet==1.0.1',
1919
'avatar': 'django-avatar==2.2.1',
2020
'bs4': 'beautifulsoup4<=4.4.1',
@@ -33,11 +33,13 @@
3333
'jwt': 'pyjwt<=1.7.1',
3434
'keyedcache': 'django-keyedcache<=1.5.1',
3535
'longerusername': 'longerusername<=0.4',
36+
'markupsafe': 'MarkupSafe<=1.1.1',
3637
'markdown2': 'markdown2<=2.3.1',
3738
'mock': 'mock==2.0.0',
3839
'oauth2': 'oauth2<=1.9.0.post1',
3940
'openid': 'python-openid<=2.2.5',
4041
'picklefield': 'django-picklefield==0.3.0',
42+
'PIL': 'Pillow<=6.2.2',
4143
'pystache': 'pystache==0.3.1',
4244
'pytz': 'pytz<=2016.4',
4345
'captcha': 'django-recaptcha>=1.0.3,<=1.0.5',

askbot/search/postgresql/thread_and_post_models_01022013.plsql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ DECLARE
5252
onerow record;
5353
BEGIN
5454
DROP AGGREGATE IF EXISTS concat_tsvectors(tsvector);
55-
END LOOP;
5655
CREATE AGGREGATE concat_tsvectors (
5756
BASETYPE = tsvector,
5857
SFUNC = tsv_add,

askbot_requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Coffin>=0.3,<=0.3.8
22
Jinja2==2.8
3-
django-appconf
3+
django-appconf<=1.0.3
44
South>=0.7.1,<=1.0.2
55
akismet==1.0.1
66
beautifulsoup4<=4.4.1
@@ -21,9 +21,11 @@ django-transaction-signals==1.0.0
2121
django<1.8
2222
html5lib==0.9999999
2323
jsonfield<=1.0.3
24+
MarkupSafe<=1.1.1
2425
markdown2<=2.3.1
2526
mock==2.0.0
2627
oauth2<=1.9.0.post1
28+
Pillow<=6.2.2
2729
pyjwt<=1.4.0
2830
pystache==0.3.1
2931
python-cas==1.1.0

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747
'Topic :: Communications',
4848
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
4949
],
50-
long_description = """Askbot will work alone or with other django apps (with some limitations, please see below), Django 1.7, PostgresQL(recommended) (>=8.3) and MySQL(**) (MyISAM backend only - see footnote **)
50+
long_description_content_type='text/markdown',
51+
long_description="""Askbot will work alone or with other django apps (with some limitations, please see below), Django 1.7, PostgresQL(recommended) (>=8.3) and MySQL(**) (MyISAM backend only - see footnote **)
5152
5253
This version of Askbot supports only Django 1.7.
5354

0 commit comments

Comments
 (0)