From 856a88f24f8a99bc391d2f1dae39306414725c4d Mon Sep 17 00:00:00 2001 From: Bugale Bugalit Date: Mon, 11 Jul 2022 16:09:02 +0300 Subject: [PATCH] Issue #54 - Upgrade dependencies pinning --- .github/workflows/test.yaml | 2 +- requirements.txt | 6 +++--- setup.py | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e5403cf..3ba5d92 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/requirements.txt b/requirements.txt index 0195ca8..534dd82 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,12 @@ -Jinja2<3.0 +Jinja2<4.0 PyGithub<2.0 cached-property<2.0 ci-py -click<7.0 +click<9.0 codecov coverage flake8 mock pytest -python-gitlab<2.0 +python-gitlab<4.0 tox diff --git a/setup.py b/setup.py index 03ddd4b..460bc7a 100644 --- a/setup.py +++ b/setup.py @@ -8,10 +8,10 @@ dependencies = [ 'ci-py', 'cached-property<2.0', - 'click<8.0', - 'Jinja2<3.0', + 'click<9.0', + 'Jinja2<4.0', 'PyGithub<2.0', - 'python-gitlab<2.0', + 'python-gitlab<4.0', 'six', ]