From b9c1027c78d29c7f84372e0906d77e04a6633983 Mon Sep 17 00:00:00 2001 From: Shaikh Rashid Date: Tue, 14 Jun 2022 18:43:31 -0400 Subject: [PATCH 1/5] =?UTF-8?q?update=20rdflib-jsonld=20for=20py3-10=20?= =?UTF-8?q?=F0=9F=90=8D=E2=AC=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 39617478f..5a755f1d1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -57,7 +57,7 @@ python-dotenv==0.14.0 pytz==2021.1 PyYAML==5.4.1 rdflib==5.0.0 -rdflib-jsonld==0.5.0 +rdflib-jsonld==0.6.2 redis==3.5.3 requests==2.25.1 requests-unixsocket==0.2.0 From 3111cd485fee95a4c31b5626625949e32924672d Mon Sep 17 00:00:00 2001 From: Shaikh Rashid Date: Thu, 16 Jun 2022 08:00:04 -0400 Subject: [PATCH 2/5] remove rdflib-jsonld and bump rdflib --- requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 5a755f1d1..09a4049db 100644 --- a/requirements.txt +++ b/requirements.txt @@ -56,8 +56,7 @@ python-dateutil==2.8.1 python-dotenv==0.14.0 pytz==2021.1 PyYAML==5.4.1 -rdflib==5.0.0 -rdflib-jsonld==0.6.2 +rdflib==6.0.1 redis==3.5.3 requests==2.25.1 requests-unixsocket==0.2.0 From 61708ded406c633146dc4bb59db24a3c14faede9 Mon Sep 17 00:00:00 2001 From: Shaikh Rashid Date: Thu, 16 Jun 2022 13:58:09 -0400 Subject: [PATCH 3/5] update travis.yml to py3-10 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9afe383b0..74b750494 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ dist: focal language: python python: - - "3.7" + - "3.10" addons: postgresql: "12" apt: From 183285b3acccc003dfadbd48297bf20c1974fcf9 Mon Sep 17 00:00:00 2001 From: shaikh-rashid <44211165+shaikh-rashid@users.noreply.github.com> Date: Thu, 16 Jun 2022 15:39:30 -0400 Subject: [PATCH 4/5] Update test.yml with py3-10 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4ac5fb305..f25cbe8d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7] + python-version: [3.10] services: postgres: image: postgres:12 From e6ba858406c1daf1e98f384a51bad53090965b01 Mon Sep 17 00:00:00 2001 From: shaikh-rashid <44211165+shaikh-rashid@users.noreply.github.com> Date: Thu, 16 Jun 2022 15:48:46 -0400 Subject: [PATCH 5/5] test.yml syntax for 3.10 --- .github/workflows/test.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f25cbe8d0..29dcc3cfc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,9 +14,7 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.10] + services: postgres: image: postgres:12 @@ -32,10 +30,10 @@ jobs: - uses: actions/checkout@v2 with: submodules: true - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.10 uses: actions/setup-python@v2 with: - python-version: ${{ matrix.python-version }} + python-version: "3.10" - name: Install dependencies run: python -m pip install -r requirements.txt - name: Test