From 8bb0983bb2d73fef28dfa0f003a806fe83f15e05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20Mart=C3=ADnez?= Date: Mon, 25 Apr 2022 09:03:23 +0200 Subject: [PATCH 1/5] #228 Fixed .travis.yml config file to solve warnings when triggering TravisCI builds. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 41ac55f..4c4e68d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ +os: linux +dist: xenial language: python services: @@ -33,9 +35,8 @@ jobs: - stage: Deploy to PyPI script: skip deploy: - skip_cleanup: true provider: pypi - user: idealista + username: idealista password: secure: vGEjnrN5N3KlYHA/3LC+uJpW2lr1sZCUahNz0OjycNg/oKB1CZuQx0TuiXF/i8DnqnYpfW+tpFEjSwa2TqJIKhrQFf9yLUblr/Ky9H8VXzyLWI+DN3t3EbCg9QWRGuC7RJm57PZkjfMR6RewHNqpjAlzkRE4kLP7CItJYJNOapXDpUIGccPucubprPs0AGL0roNG8fhs9goyeHD05es6OCS1v1LO9j91mDMno+XH2yNwSFmVHRFbzdZP+jHqx8L4dI+mlOIK2iATW1JTCyGWRHBqfb8w7Pi97r4qWpl76OduFH8b6Ldg5adIFgXFzyTUpZUNmenFLji9FwxXUWTQHCtRWzSx6SfN1ebaaqyCA84+p12pEXXee2xLhw04pWLrHHk22FnleEcL+Us80s50+lWCZz0MiakyTCVE+0YJuW/CT25RNGZvOvtrqyZCXFi2OO2Nu8NIbCKjvehNKpXCFdJLBBJcUAOmNz667ELEs8OTzFqxzJwykkxW+zwvxNc3/T5P1v1q8lUbxml3qSKfzvmyirXH1v0D/GMXuQdDqw3oBdjJb304bSsiWJ0l1YCYRkl7fV9bnO0WboEqJG6HJGX3Pt1GgQIrIu/DnBZOnUiSFwaqH4nh1pyYzEHqTAxPsmIaVtYkTgJOkoZXZLtLv0CefB5jo3SmLF1g3qGDRCc= on: From a6fbf4c31027b2a65eac1010929ebe89fa8301e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20Mart=C3=ADnez?= Date: Mon, 25 Apr 2022 09:23:58 +0200 Subject: [PATCH 2/5] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5900440..8581be8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch ## [Unreleased](https://github.com/idealista/prom2teams/tree/develop) ### Fixed +- *[#290](https://github.com/idealista/prom2teams/pull/290) Fixed .travis.yml config file to solve warnings when triggering TravisCI builds.* @ommarmol - *[#279](https://github.com/idealista/prom2teams/pull/279) Fixed issue with MS Teams exception handling* @nryabkov ### Added - *[#281](https://github.com/idealista/prom2teams/pull/281) Allow to add arbitrary envvars to deployment* @dkobras From 0db818cbbe9ba45be8a16698f0bf4f024ee17fe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20Mart=C3=ADnez?= Date: Mon, 25 Apr 2022 11:48:45 +0200 Subject: [PATCH 3/5] #228 Update python and OS versions in .travis.yml to avoid errors triggering TravisCI builds. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4c4e68d..c6ba61e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,15 @@ os: linux -dist: xenial +dist: bionic language: python services: - docker python: - - '3.6' - '3.7' - '3.8' + - '3.9' + - '3.10' env: - DOCKER_COMPOSE_VERSION=1.27.3 From fab795251f5e30d894f50eef99d27cb7a76a113d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20Mart=C3=ADnez?= Date: Wed, 27 Apr 2022 15:55:14 +0200 Subject: [PATCH 4/5] #228 Updated python version in .travis.yml and added itsdangerous==2.0.1 to requirements.txt, as it is required by Flask and MarkupSafe. --- .travis.yml | 1 - requirements.txt | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c6ba61e..f012c1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,6 @@ python: - '3.7' - '3.8' - '3.9' - - '3.10' env: - DOCKER_COMPOSE_VERSION=1.27.3 diff --git a/requirements.txt b/requirements.txt index 6a9604d..b6fa358 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,3 +12,4 @@ zipp==1.2.0 MarkupSafe==1.1.1 pyrsistent==0.16.0 tenacity==6.2.0 +itsdangerous==2.0.1 From f190ebc32c2deb14d245058b495371148a6cbb67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20Mart=C3=ADnez?= Date: Wed, 27 Apr 2022 16:04:16 +0200 Subject: [PATCH 5/5] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8581be8..bb24e7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a ch ## [Unreleased](https://github.com/idealista/prom2teams/tree/develop) ### Fixed -- *[#290](https://github.com/idealista/prom2teams/pull/290) Fixed .travis.yml config file to solve warnings when triggering TravisCI builds.* @ommarmol +- *[#290](https://github.com/idealista/prom2teams/pull/290) Fixed .travis.yml config file and added to requirements.txt some missing dependencies.* @ommarmol - *[#279](https://github.com/idealista/prom2teams/pull/279) Fixed issue with MS Teams exception handling* @nryabkov ### Added - *[#281](https://github.com/idealista/prom2teams/pull/281) Allow to add arbitrary envvars to deployment* @dkobras