mirror of
https://github.com/YunoHost/tartiflette.git
synced 2024-09-03 20:06:08 +02:00
Update dependency versions
This commit is contained in:
parent
602a20cad9
commit
078bef0335
3 changed files with 20 additions and 17 deletions
|
@ -55,7 +55,7 @@ class AppCIBranch(db.Model):
|
||||||
apps = App.query.filter_by(ci_enabled=True).all()
|
apps = App.query.filter_by(ci_enabled=True).all()
|
||||||
most_recent_tests = AppCIResult.query \
|
most_recent_tests = AppCIResult.query \
|
||||||
.filter_by(branch = self) \
|
.filter_by(branch = self) \
|
||||||
.order_by('date desc') \
|
.order_by(AppCIResult.date.desc()) \
|
||||||
.all()
|
.all()
|
||||||
|
|
||||||
for app in apps:
|
for app in apps:
|
||||||
|
|
|
@ -137,7 +137,7 @@ class App(db.Model):
|
||||||
most_recent_test = AppCIResult.query \
|
most_recent_test = AppCIResult.query \
|
||||||
.filter_by(branch = branch) \
|
.filter_by(branch = branch) \
|
||||||
.filter_by(app = self) \
|
.filter_by(app = self) \
|
||||||
.order_by('date desc') \
|
.order_by(AppCIResult.date.desc()) \
|
||||||
.first()
|
.first()
|
||||||
if most_recent_test:
|
if most_recent_test:
|
||||||
yield most_recent_test
|
yield most_recent_test
|
||||||
|
|
|
@ -1,16 +1,19 @@
|
||||||
certifi==2017.11.5
|
Click==7.0
|
||||||
chardet==3.0.4
|
Flask==1.0.2
|
||||||
click==6.7
|
Flask-SQLAlchemy==2.4.0
|
||||||
Flask==0.12.2
|
|
||||||
Flask-Script==2.0.6
|
Flask-Script==2.0.6
|
||||||
Flask-SQLAlchemy==2.3.2
|
Jinja2==2.10.1
|
||||||
idna==2.6
|
MarkupSafe==1.1.1
|
||||||
itsdangerous==0.24
|
SQLAlchemy==1.3.3
|
||||||
Jinja2==2.10
|
Werkzeug==0.15.2
|
||||||
MarkupSafe==1.0
|
certifi==2019.3.9
|
||||||
python-dateutil==2.6.1
|
chardet==3.0.4
|
||||||
requests==2.18.4
|
feedgen==0.7.0
|
||||||
six==1.11.0
|
gunicorn==19.7.1
|
||||||
SQLAlchemy==1.1.15
|
idna==2.8
|
||||||
urllib3==1.22
|
itsdangerous==1.1.0
|
||||||
Werkzeug==0.13
|
lxml==4.2.1
|
||||||
|
python-dateutil==2.8.0
|
||||||
|
requests==2.21.0
|
||||||
|
six==1.12.0
|
||||||
|
urllib3==1.25.2
|
||||||
|
|
Loading…
Add table
Reference in a new issue