From 967300389f4036f4353ad6254498d4eb4ed67511 Mon Sep 17 00:00:00 2001 From: Radu Chiorean Date: Sat, 30 Mar 2024 14:12:05 +0000 Subject: [PATCH 1/7] Fixing version of python in the CI --- .github/workflows/auto_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_ci.yml b/.github/workflows/auto_ci.yml index 91077bf..a5d9119 100644 --- a/.github/workflows/auto_ci.yml +++ b/.github/workflows/auto_ci.yml @@ -14,7 +14,7 @@ jobs: BLPAPI_ROOT: /home/bbg strategy: matrix: - python-version: ["3.6", "3.7", "3.8"] + python-version: ["3.6.15", "3.7.17", "3.8.18"] steps: - uses: actions/checkout@v3 From 8e8522215d7a50827ff9d8e6f668cc9b3c5c9cfc Mon Sep 17 00:00:00 2001 From: Radu Chiorean Date: Sat, 30 Mar 2024 14:24:09 +0000 Subject: [PATCH 2/7] Fixing version of python in the CI --- .github/workflows/auto_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_ci.yml b/.github/workflows/auto_ci.yml index a5d9119..23520f3 100644 --- a/.github/workflows/auto_ci.yml +++ b/.github/workflows/auto_ci.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: BLPAPI_ROOT: /home/bbg strategy: From 817a6206720a787b91268a556f9ceafb101eb916 Mon Sep 17 00:00:00 2001 From: Radu Chiorean Date: Sat, 30 Mar 2024 14:26:47 +0000 Subject: [PATCH 3/7] Fixing version of python in the CI --- .github/workflows/auto_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_ci.yml b/.github/workflows/auto_ci.yml index 23520f3..fde371a 100644 --- a/.github/workflows/auto_ci.yml +++ b/.github/workflows/auto_ci.yml @@ -9,12 +9,12 @@ on: jobs: build: - runs-on: ubuntu-20.04 env: BLPAPI_ROOT: /home/bbg strategy: matrix: python-version: ["3.6.15", "3.7.17", "3.8.18"] + runs-on: [ubuntu-latest, ubuntu-20.04] steps: - uses: actions/checkout@v3 From c32a6d824d1ebd5c55c53e0a2284b51e5ffbe8b5 Mon Sep 17 00:00:00 2001 From: Radu Chiorean Date: Sat, 30 Mar 2024 14:29:05 +0000 Subject: [PATCH 4/7] Fixing version of python in the CI --- .github/workflows/auto_ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto_ci.yml b/.github/workflows/auto_ci.yml index fde371a..92235d7 100644 --- a/.github/workflows/auto_ci.yml +++ b/.github/workflows/auto_ci.yml @@ -8,13 +8,13 @@ on: jobs: build: - + runs-on: ${{ matrix.os }} env: BLPAPI_ROOT: /home/bbg strategy: matrix: python-version: ["3.6.15", "3.7.17", "3.8.18"] - runs-on: [ubuntu-latest, ubuntu-20.04] + os: [ubuntu-latest, ubuntu-20.04] steps: - uses: actions/checkout@v3 From 52a2b8f9662185cd0232425e4ebd5b702108e0ff Mon Sep 17 00:00:00 2001 From: Radu Chiorean Date: Sat, 30 Mar 2024 14:32:29 +0000 Subject: [PATCH 5/7] Fixing version of python in the CI --- .github/workflows/auto_ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/auto_ci.yml b/.github/workflows/auto_ci.yml index 92235d7..80838f1 100644 --- a/.github/workflows/auto_ci.yml +++ b/.github/workflows/auto_ci.yml @@ -15,6 +15,9 @@ jobs: matrix: python-version: ["3.6.15", "3.7.17", "3.8.18"] os: [ubuntu-latest, ubuntu-20.04] + exclude: + - python-version: "3.6.15" + os: ubuntu-latest steps: - uses: actions/checkout@v3 From 194147f95755118a33e25e913aa53f93e594d9a6 Mon Sep 17 00:00:00 2001 From: Radu Chiorean Date: Sat, 30 Mar 2024 14:34:19 +0000 Subject: [PATCH 6/7] Fixing version of python in the CI --- .github/workflows/auto_ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto_ci.yml b/.github/workflows/auto_ci.yml index 80838f1..de0ddb3 100644 --- a/.github/workflows/auto_ci.yml +++ b/.github/workflows/auto_ci.yml @@ -15,9 +15,9 @@ jobs: matrix: python-version: ["3.6.15", "3.7.17", "3.8.18"] os: [ubuntu-latest, ubuntu-20.04] - exclude: - - python-version: "3.6.15" - os: ubuntu-latest + exclude: + - python-version: "3.6.15" + os: ubuntu-latest steps: - uses: actions/checkout@v3 From 1c46851f62ca260d0a4b0912d17b4cc484b8f818 Mon Sep 17 00:00:00 2001 From: Radu Chiorean Date: Sat, 30 Mar 2024 15:09:22 +0000 Subject: [PATCH 7/7] Pinning pandas version since pd.to_datetime behaviour changed and we rely on that behaviour in format_raw --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fd34ced..da19e0d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -i https://pypi.org/simple --extra-index-url https://bcms.bloomberg.com/pip/simple/ numpy >= 1.15.0 -pandas >= 1.0.0 +pandas >= 1.0.0, <=1.5.3 pyarrow >= 1.0.1 pytz >= 2020.4 ruamel.yaml >= 0.15.0