Skip to content

Commit

Permalink
Merge pull request #4135 from fecgov/feature/4076-upgrade-smart-open-…
Browse files Browse the repository at this point in the history
…related-pkgs

upgrade smart open related pkgs
  • Loading branch information
fec-jli authored Jan 6, 2020
2 parents 3596506 + eb5a203 commit c8e1739
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Flask-Cors==3.0.8
Flask-Script==2.0.6
Flask-RESTful==0.3.7
Flask-SQLAlchemy==2.4.1
python-dateutil==2.4.2
python-dateutil==2.8.1
sqlalchemy-postgres-copy==0.3.0
networkx==1.11
SQLAlchemy==1.3.1
icalendar==3.9.1
icalendar==4.0.2
GitPython==1.0.1
gunicorn==19.9.0
gevent==1.4.0
Expand All @@ -31,7 +31,7 @@ marshmallow-sqlalchemy==0.15.0
git+https://github.com/fecgov/marshmallow-pagination@master

# Data export
smart_open==1.7.1
smart_open==1.8.0

# Task queue
celery==4.3.0 # if celery version is updated, need to verify compatibility with kombu and ensure correct version of kombu is pinned above
Expand Down
3 changes: 2 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ def _detect_space(repo, branch=None, yes=False):
DEPLOY_RULES = (
('prod', _detect_prod),
('stage', lambda _, branch: branch.startswith('release')),
('dev', lambda _, branch: branch == 'develop'),
('dev', lambda _, branch: branch == 'feature/4076-upgrade-smart-open-related-pkgs'),
# ('dev', lambda _, branch: branch == 'develop'),
)


Expand Down

0 comments on commit c8e1739

Please sign in to comment.