Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Sep 30, 2024
1 parent 0bbfde5 commit cf6622e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11

- name: 🐍 Install development dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license_header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches:
- "master"
- "worker/**"
- "bump-python/**"

jobs:
binary:
Expand All @@ -18,7 +19,7 @@ jobs:
- name: 🐍 Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11

- name: 🐍 Install dependencies
run: |
Expand Down
5 changes: 3 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ pyinstaller-hooks-contrib==2024.6
# IMPORTANT: Make sure the versions of these typing libraries match the versions
# of the corresponding implementation libraries used in production (in `requirements.txt`).

pandas-stubs~=1.4.0
pandas-stubs~=1.4.0; python_version <= '3.8'
pandas-stubs~=2.2.2; python_version > '3.8'
types-paramiko~=3.4.0
types-psycopg2~=2.9.4
types-psycopg2~=2.9.9
types-redis~=4.1.2
types-requests~=2.27.1
types-PyYAML~=5.4.1
8 changes: 5 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ gunicorn~=20.1.0
jsonref~=0.2
PyJWT~=2.9.0
MarkupSafe~=2.0.1
numpy~=1.22.1
pandas~=1.4.0
numpy~=1.22.1; python_version <= '3.8'
numpy~=1.26.4; python_version > '3.8'
pandas~=1.4.0; python_version <= '3.8'
pandas~=2.2.3; python_version > '3.8'
paramiko~=2.12.0
plyer~=2.0.0
psycopg2-binary==2.9.4
psycopg2-binary~=2.9.9
py7zr~=0.20.6
PyQt5~=5.15.6
python-json-logger~=2.0.7
Expand Down

0 comments on commit cf6622e

Please sign in to comment.