Open veselin-angelov opened 3 years ago
Please note that the latest release is wrongly tagged 4.1.1.2
, I think @Riverfount meant 0.4.1.2
instead.
That must be wrong. The author and maintainers (@rochacbruno, @Riverfount, and @getcake) all have recent online activities (GitHub, Twitter, etc.).
yup totally alive here, new release is in the works.
There's now a deprecation warning for from flask import Markup
, it would be great to put out an update that resolves this.
Coming here because same happened after Flask moved into 3.0 this dependencie its broken :( There's now a deprecation warning for from flask import Markup, it would be great to put out an update that resolves this.
To survive for a while just use markupsafe and remove it from flask \Lib\site-packages\flask_googlemaps__init__.py
from flask import Blueprint, g, render_template from markupsafe import Markup
If there is a PR that can meke it work with all versions of flask I am happy to merge and release.
try:
from flask import Markup
except ImportError:
from markupsafe import Markup
Here you have it @rochacbruno flask_googlemaps @ git+https://github.com/KashaMalaga/Flask3-GoogleMaps.git@master
Hi @getcake , the release still in progress? @Riverfount
Hi @getcake , the release still in progress? @Riverfount
Looks like abondonware.
Hi @getcake , the release still in progress? @Riverfount
Looks like abondonware.
I pass the maintenance e @getcake, because I don't have time to work in this project!
Hi @getcake , the release still in progress? @Riverfount
Looks like abondonware.
I pass the maintenance e @getcake, because I don't have time to work in this project!
That's fine. There still hasn't been a push in years so it is technically abondonware regardless of who "maintains" it. In it's current state the project is broken on any recent version of Flask.
I'm not throwing shade, just stating facts.
is there any volunteer to become co-maintainer? we can give access to the repo and pypi
Hello, as the title says the latest version of the library is not on pypi and cannot be installed with pip. The latest version on there has a bug in
gmapjs.html
(on line 41 a comma is missing). I would be really thankful if you release it on pypi as I am trying to deploy an app with this library on heroku. Thanks!