Skip to content

Commit 88a9651

Browse files
authored
Merge pull request #7 from OpenDataServices/2025-01-22
2025 01 22
2 parents 222aea8 + 7337a9e commit 88a9651

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,11 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
9+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
1010
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-python@v1
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-python@v5
1313
with:
1414
python-version: ${{ matrix.python-version }}
15-
- uses: actions/cache@v1
16-
with:
17-
path: ~/.cache/pip
18-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }}
19-
restore-keys: |
20-
${{ runner.os }}-pip-
2115
- run: pip install -e .[dev]
2216
- run: python -m unittest discover

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88

99
## Changed
1010

11-
Python support is now 3.7+ only
11+
Python support is now 3.9+ only
1212

1313
## [0.2.0] - 2017-11-??
1414

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
license='BSD',
99
packages=['json_merge_patch'],
1010
include_package_data=True,
11-
python_requires=">=3.7",
11+
python_requires=">=3.9",
1212
url='https://github.com/open-contracting/json-merge-patch'
1313
)

0 commit comments

Comments
 (0)