Skip to content

Commit 2d61bb1

Browse files
committed
updating dev dependencies. Adding tests for include_paths
1 parent 47d7816 commit 2d61bb1

6 files changed

+352
-98
lines changed

requirements-cli.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
click==8.1.7
2-
pyyaml==6.0.1
2+
pyyaml==6.0.2

requirements-dev.txt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
-r requirements.txt
22
-r requirements-cli.txt
33
bump2version==1.0.1
4-
jsonpickle==3.2.1
5-
coverage==7.5.3
4+
jsonpickle==4.0.0
5+
coverage==7.6.4
66
ipdb==0.13.13
7-
numpy==2.0.0
8-
pytest==8.2.2
9-
pytest-cov==5.0.0
7+
numpy==2.1.3
8+
pytest==8.3.3
9+
pytest-cov==6.0.0
1010
python-dotenv==1.0.1
1111
Sphinx==6.2.1 # We use the html style that is not supported in Sphinx 7 anymore.
1212
sphinx-sitemap==2.6.0
13-
sphinxemoji==0.2.0
14-
flake8==7.1.0
13+
sphinxemoji==0.3.1
14+
flake8==7.1.1
1515
python-dateutil==2.9.0.post0
16-
orjson==3.10.5
17-
wheel==0.43.0
18-
tomli==2.0.1
19-
tomli-w==1.0.0
20-
pydantic==2.7.4
21-
pytest-benchmark==4.0.0
22-
pandas==2.2.2
23-
polars==1.0.0
16+
orjson==3.10.11
17+
wheel==0.45.0
18+
tomli==2.1.0
19+
tomli-w==1.1.0
20+
pydantic==2.9.2
21+
pytest-benchmark==5.1.0
22+
pandas==2.2.3
23+
polars==1.13.1

tests/test_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class TestCommands:
1212

1313
@pytest.mark.parametrize('name1, name2, expected_in_stdout, expected_exit_code', [
1414
('t1.json', 't2.json', """dictionary_item_added": [\n "root[0][\'key3\']""", 0),
15-
('t1_corrupt.json', 't2.json', "Expecting property name enclosed in double quotes", 1),
15+
('t1_corrupt.json', 't2.json', "Error when loading t1: Illegal trailing comma before end of object: line 3 column 21 (char 45)\n", 1),
1616
('t1.json', 't2_json.csv', '"old_value": "value2"', 0),
1717
('t2_json.csv', 't1.json', '"old_value": "value3"', 0),
1818
('t1.csv', 't2.csv', '"new_value": "James"', 0),

tests/test_diff_include_paths

Lines changed: 0 additions & 81 deletions
This file was deleted.

0 commit comments

Comments
 (0)