Tomás Pérez Álvarez
Tomás Pérez Álvarez
Weird still is that these both ways to run the command works `python .venv/bin/alembic` and `python -m alembic` it's calling the script that fails `alembic` -> `zsh: permission denied: alembic`
Holy 💩 . It's solved Botton line the issue is that I was working on `~/Documents Local` (a folder created by me) as soon as I moved the project to...
Oh! I'd like to help fixing that!
I have encountered the same issue. I wrote a delta-table first in s3 with the following params ```python data_to_write.write_delta( target=s3_location, mode="error", storage_options={ "AWS_REGION": self.region_name, "AWS_ACCESS_KEY_ID": self.boto_session.get_credentials().access_key, "AWS_SECRET_ACCESS_KEY": self.boto_session.get_credentials().secret_key, "AWS_S3_ALLOW_UNSAFE_RENAME": "true",...
This seems to have been solved in the latest release (`v0.1.5`)
[Hatch](https://github.com/pypa/hatch) has a simple but clean approach to versioning. Maybe something similar can be supported. https://hatch.pypa.io/latest/version/ The `__version__` attribute is compliant with PEP specification. https://peps.python.org/pep-0621/#version
This is what it would look like. ```toml [project] ... dynamic = ["version"] [tool.hatch.version] path = "{{pkg_name}}/__about__.py" ``` I guess a middle point can be found. I don't know how...