File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ yet supported.
5959Requirements
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
You can’t perform that action at this time.
0 commit comments