v1.5.1
This commit is contained in:
Родитель
03f044c733
Коммит
bf9b18322f
|
@ -5,7 +5,7 @@ in their PYTHONPATH. airflow_login should be based off the
|
|||
`airflow.www.login`
|
||||
"""
|
||||
from builtins import object
|
||||
__version__ = "1.5.0"
|
||||
__version__ = "1.5.1"
|
||||
|
||||
import logging
|
||||
import os
|
||||
|
|
|
@ -14,6 +14,7 @@ depends_on = None
|
|||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy import func
|
||||
from sqlalchemy.engine.reflection import Inspector
|
||||
|
||||
from airflow import settings
|
||||
|
@ -232,7 +233,7 @@ def upgrade():
|
|||
sa.Column(
|
||||
'timestamp',
|
||||
sa.DateTime(),
|
||||
server_default=sa.text(u'CURRENT_TIMESTAMP'),
|
||||
default=func.now(),
|
||||
nullable=False),
|
||||
sa.Column('execution_date', sa.DateTime(), nullable=False),
|
||||
sa.Column('task_id', sa.String(length=250), nullable=False),
|
||||
|
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||
import sys
|
||||
|
||||
# Kept manually in sync with airflow.__version__
|
||||
version = '1.5.0'
|
||||
version = '1.5.1'
|
||||
|
||||
doc = [
|
||||
'sphinx>=1.2.3',
|
||||
|
|
Загрузка…
Ссылка в новой задаче