Skip to content

Commit

Permalink
[release] version 0.1.29 (pre-paysage)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahonestla committed Apr 23, 2024
1 parent 6f65fd6 commit 12e1565
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion project/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.28'
__version__ = '0.1.29'
2 changes: 1 addition & 1 deletion project/client/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h1>Affiliation matcher</h1>
<option value="grid">grid.ac</option>
<option selected value="rnsr">RNSR</option>
<option value="ror">RoR</option>
<option value="paysage">Paysage</option>
<!-- <option value="paysage">Paysage</option> -->
</select>
</div>
<div class="col-md-2" id="select_year">
Expand Down
2 changes: 1 addition & 1 deletion project/client/templates/version.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.28
0.1.29
5 changes: 3 additions & 2 deletions project/server/main/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def create_task_load(args: dict = None) -> dict:
result.update(load_grid(index_prefix=index_prefix_dated))
result.update(load_rnsr(index_prefix=index_prefix_dated))
result.update(load_ror(index_prefix=index_prefix_dated))
result.update(load_paysage(index_prefix=index_prefix_dated))
# result.update(load_paysage(index_prefix=index_prefix_dated))
elif matcher_type == 'country':
result.update(load_country(index_prefix=index_prefix_dated))
elif matcher_type == 'grid':
Expand All @@ -71,7 +71,8 @@ def create_task_load(args: dict = None) -> dict:
elif matcher_type == 'wikidata':
result.update(load_wikidata(index_prefix=index_prefix_dated))
elif matcher_type == "paysage":
result.update(load_paysage(index_prefix=index_prefix_dated))
result = {"Error": "Matcher paysage not developped yet!"}
# result.update(load_paysage(index_prefix=index_prefix_dated))
else:
result = {'Error': f'Matcher type {matcher_type} unknown'}
# An alias is the put on the newly created indices
Expand Down

0 comments on commit 12e1565

Please sign in to comment.