Skip to content

Commit 5dba5aa

Browse files
committed
Support Python >= 3.8.
1 parent 5256e1d commit 5dba5aa

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/main.yaml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,31 +35,27 @@ jobs:
3535
strategy:
3636
matrix:
3737
python-version:
38-
#- '3.4'
39-
#- '3.5'
40-
#- '3.6'
41-
- '3.7'
4238
- '3.8'
4339
- '3.9'
4440
- '3.10'
4541
- '3.11'
4642
- '3.12'
4743
- 'pypy3.10'
4844
loader: [requests, aiohttp]
49-
#exclude:
50-
# - python-version: "3.4"
51-
# loader: aiohttp
5245
steps:
5346
- uses: actions/checkout@v4
5447
- name: Use Python ${{ matrix.python-version }}
5548
uses: actions/setup-python@v4
5649
with:
5750
python-version: ${{ matrix.python-version }}
5851
cache: 'pip'
59-
- name: Install
52+
- name: Install dependencies
6053
run: |
6154
python -m pip install --upgrade pip
6255
pip install -r requirements.txt
56+
- name: Install testing dependencies
57+
run: |
58+
pip install -r requirements-test.txt
6359
- name: Fetch test suites
6460
run: |
6561
git clone --depth 1 https://github.com/w3c/json-ld-api.git _json-ld-api

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# pyld ChangeLog
22

3+
## 3.0.0 - 2024-xx-xx
4+
5+
### Changed
6+
- **BREAKING**: Require supported Python version >= 3.8.
7+
38
## 2.0.4 - 2024-02-16
49

510
### Fixed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ yet supported.
5959
Requirements
6060
------------
6161

62-
- Python_ (3.6 or later)
62+
- Python_ (3.8 or later)
6363
- Requests_ (optional)
6464
- aiohttp_ (optional, Python 3.5 or later)
6565

0 commit comments

Comments
 (0)