Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix atlassian api version #62

Merged
merged 14 commits into from
Jan 17, 2024
4 changes: 3 additions & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11.5"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -25,6 +25,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libkrb5-dev
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint reorder-python-imports
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
requests==2.31.0
xmltodict==0.13.0
testrail-api>=1.12.9
testrail-api>=1.12.1
plotly==5.18.0
psutil==5.9.7
atlassian-python-api<=3.41.5
atlassian-python-api>=3.41.7
kaleido==0.2.1
httplib2==0.22.0
google-auth-httplib2==0.2.0
Expand Down