Skip to content

Commit

Permalink
Proactively trying to fix warnings broke running in Python versions >…
Browse files Browse the repository at this point in the history
… 3.7
  • Loading branch information
Douglas Mennella committed May 30, 2021
1 parent c74cfad commit 7fe9883
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions csv_reconcile/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
except:
import importlib_metadata as metadata

__version__ = '0.2.4'
__version__ = '0.2.5'
#------------------------------------------------------------------
# Implement reconciliation API
# [[https://reconciliation-api.github.io/specs/latest/]]
Expand Down Expand Up @@ -151,7 +151,7 @@ def acceptPropertyRequest():


def pickScorer(plugin):
eps = metadata.entry_points().select(group='csv_reconcile.scorers')
eps = metadata.entry_points()['csv_reconcile.scorers']
if len(eps) == 0:
raise RuntimeError("Please install a \"csv_reconcile.scorers\" plugin")
elif plugin:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "csv-reconcile"
version = "0.2.4"
version = "0.2.5"
description = "OpenRefine reconciliation service backed by csv resource"
authors = ["Douglas Mennella <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_csv_reconcile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


def test_version():
assert __version__ == '0.2.4'
assert __version__ == '0.2.5'


def test_manifest(basicClient):
Expand Down

0 comments on commit 7fe9883

Please sign in to comment.