Skip to content

Commit e94f3c6

Browse files
authored
Merge pull request #1963 from Scifabric/sqlalchemy-1.3.0
chore: increase SQLAlachemy version.
2 parents 9aa4d75 + d718b5e commit e94f3c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"six==1.12.0",
120120
"soupsieve==1.6.1",
121121
"speaklater==1.3",
122-
"SQLAlchemy==1.1.7",
122+
"SQLAlchemy>=1.3.0",
123123
"stevedore>=1.30.0",
124124
"termstyle==0.1.11",
125125
"text-unidecode==1.2",
@@ -138,7 +138,7 @@
138138

139139
setup(
140140
name = 'pybossa',
141-
version = '3.1.0',
141+
version = '3.1.2',
142142
packages = find_packages(),
143143
install_requires = requirements,
144144
# only needed when installing directly from setup.py (PyPi, eggs?) and pointing to e.g. a git repo.

test/test_auditlog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_project_update_attributes(self):
9292
'short_name': 'new_short_name',
9393
'description': 'new_description',
9494
'long_description': 'new_long_description',
95-
'allow_anonymous_contributors': 'False',
95+
'allow_anonymous_contributors': False,
9696
'info': {'list': [1]}
9797
}
9898
attributes = list(data.keys())

0 commit comments

Comments
 (0)