Skip to content

Commit c18f324

Browse files
committed
1.1.0
1 parent 504594b commit c18f324

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# RESTful Nested-Diff
22

3-
REST API and web UI for [Nested-Diff.py](https://github.com/mr-mixas/Nested-Diff.py)
3+
REST API and web UI for [Nested-Diff.py](https://github.com/mr-mixas/Nested-Diff.py),
4+
recursive diff and patch for nested structures.
45

56
**[Live Demo](https://nesteddiff.pythonanywhere.com/)**
67

8+
[![PyPi](https://img.shields.io/pypi/v/nested_diff_restful.svg)](https://pypi.python.org/pypi/nested_diff_restful)
9+
[![Tests](https://github.com/mr-mixas/Nested-Diff-RESTful/actions/workflows/tests.yml/badge.svg)](https://github.com/mr-mixas/Nested-Diff-RESTful/actions?query=branch%3Amaster)
10+
[![Supported Python versions](https://img.shields.io/pypi/pyversions/nested_diff_restful.svg)](https://pypi.org/project/nested_diff_restful/)
11+
[![License](https://img.shields.io/pypi/l/nested_diff_restful.svg)](https://github.com/mr-mixas/Nested-Diff-RESTful/blob/devel/LICENSE)
12+
713
## Install
814

915
```sh
@@ -19,7 +25,12 @@ nested_diff_restful --bind 127.0.0.1:8080 --workers=4
1925
## Run tests
2026

2127
```sh
22-
pip install -e .[test]
28+
# prepare environment
29+
python3 -m venv venv && \
30+
. venv/bin/activate && \
31+
pip install -e .[test]
32+
33+
# run tests
2334
pytest
2435
```
2536

nested_diff_restful/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
"""REST API and web UI for nested-diff"""
1616

17-
__version__ = '1.0.1'
17+
__version__ = '1.1.0'
1818
__author__ = 'Michael Samoglyadov'
1919
__license__ = 'Apache License, Version 2.0'
2020
__website__ = 'https://github.com/mr-mixas/Nested-Diff-RESTful'

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ classifiers = [
1515
'Intended Audience :: System Administrators',
1616
'License :: OSI Approved :: Apache Software License',
1717
'Operating System :: OS Independent',
18+
'Programming Language :: Python :: 3 :: Only',
19+
'Programming Language :: Python :: 3.8',
20+
'Programming Language :: Python :: 3.9',
21+
'Programming Language :: Python :: 3.10',
22+
'Programming Language :: Python :: 3.11',
23+
'Programming Language :: Python :: 3.12',
1824
]
1925
dynamic = ['version', 'description']
2026
dependencies = [

0 commit comments

Comments
 (0)