We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0dca3e commit 929e1b9Copy full SHA for 929e1b9
.github/workflows/test.yml
@@ -32,7 +32,15 @@ jobs:
32
- name: Install dependencies
33
run: |
34
python -m pip install --upgrade pip
35
- pip install -r requirements.txt
+ # Install base dependencies
36
+ pip install atlassian-python-api certifi charset-normalizer Deprecated idna oauthlib requests requests-oauthlib six urllib3 wrapt python-dotenv click
37
+ # Install pydantic based on Python version
38
+ if python -c "import sys; exit(0 if sys.version_info >= (3, 9) else 1)"; then
39
+ pip install "pydantic>=2.0.0"
40
+ else
41
+ pip install "pydantic<2.0.0"
42
+ fi
43
+ # Install dev dependencies
44
pip install pytest pytest-cov flake8 black mypy
45
46
- name: Lint with flake8
0 commit comments