Skip to content

Commit 590588e

Browse files
committed
fixup! compat. python 3.13
1 parent 1982a3b commit 590588e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ref_geo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
def configure_alembic(alembic_config):
1919
alembic_config.set_main_option("sqlalchemy.url", current_app.config["SQLALCHEMY_DATABASE_URI"])
2020
version_locations = alembic_config.get_main_option("version_locations", default="").split()
21-
for entry_point in entry_points("alembic", "migrations"):
21+
for entry_point in entry_points(group="alembic", name="migrations"):
2222
version_locations += [entry_point.value]
2323
alembic_config.set_main_option("version_locations", " ".join(version_locations))
2424
return alembic_config

0 commit comments

Comments
 (0)