Skip to content

Commit 25f1f51

Browse files
committed
release 2.0.1
1 parent 9c4ea46 commit 25f1f51

5 files changed

Lines changed: 14 additions & 11 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ jobs:
2626
pip install .[test]
2727
- name: Test with pytest
2828
run: |
29-
pytest -m 'not with_catalog and not with_internet'
29+
pytest -m 'not with_internet'

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
copyright = '2026, Robert Forkel'
2222
author = 'Robert Forkel'
2323

24-
release = '2.0.1.dev0'
25-
version = '2.0.1.dev0'
24+
release = '2.0.1'
25+
version = '2.0.1'
2626

2727

2828
# -- General configuration ---------------------------------------------------

setup.cfg

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = cldfbench
3-
version = 2.0.1.dev0
3+
version = 2.0.1
44
license = Apache 2.0
55
license_files = LICENSE
66
author = Robert Forkel
@@ -66,8 +66,8 @@ test =
6666
pytest-mock
6767
pytest-cov
6868
tox
69-
pyglottolog>=3.2.2
70-
pyconcepticon
69+
pyglottolog>=4.0
70+
pyconcepticon>=4.0
7171
odfpy
7272
openpyxl
7373
xlrd>=2
@@ -82,10 +82,10 @@ excel =
8282
xlrd>=2
8383
glottolog =
8484
# Access the Glottolog catalog.
85-
pyglottolog
85+
pyglottolog>=4.0
8686
concepticon =
8787
# Access the Concepticon catalog.
88-
pyconcepticon
88+
pyconcepticon>=4.0
8989
clts =
9090
# Access the CLTS catalog.
9191
pyclts
@@ -122,4 +122,4 @@ skip_missing_interpreter = true
122122

123123
[testenv]
124124
deps = .[test]
125-
commands = pytest -m 'not with_catalog' {posargs}
125+
commands = pytest {posargs}

src/cldfbench/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
from cldfbench.metadata import * # noqa: F401, F403
1111
from cldfbench.scaffold import * # noqa: F401, F403
1212

13-
__version__ = '2.0.1.dev0'
13+
__version__ = '2.0.1'
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
1+
"""
2+
Testing
3+
"""
24
def test_valid(cldf_dataset, cldf_logger):
5+
"""Testing"""
36
assert cldf_dataset.validate(log=cldf_logger)

0 commit comments

Comments
 (0)