stephen-dexda

Results 24 comments of stephen-dexda

I notice in https://github.com/external-secrets/external-secrets/pull/966, the following is used: ```go idx := strings.Index(ref.Property, ".") if idx > 0 { refProperty := strings.ReplaceAll(ref.Property, ".", "\\.") ``` Is there a reason that's not...

Created https://github.com/external-secrets/external-secrets/pull/1459, but the paul-the-alien bot closed it because of a missing description and I can't re-open it myself (not super-helpful bot behaviour really). Can you re-open it?

At least for the broken namespace value, explicitly setting `helmCharts.*namespace` worked around the issue for me (see https://github.com/kubernetes-sigs/kustomize/issues/3815). I also had a problem with the release name being set to...

Unfortunately neither workaround hides the directives from `help(foo)`. To follow up on @terrencepreilly's reply to #148 which I opened about the same issue (didn't realise there was an open bug...

PEP 621's status is now provisionally accepted as of [8 days ago](https://discuss.python.org/t/pep-621-round-3/5472/114). From the point of view of a package dev., having a build tool-independent metadata specification in pyproject.toml is...

Additionally, PEP 621 is now referenced at https://packaging.python.org/specifications/declaring-project-metadata/.

As part of this, `poetry version ` should bump `project.version` as well as/instead of `tool.poetry.version`, depending which is/are present.

PEP 621 was [updated to incorporate](https://www.python.org/dev/peps/pep-0621/#dependencies-optional-dependencies) the decision on PEP 631 vs. PEP 633; it requires PEP 508 version strings.

The solution seems pretty straightforward to me in principle - fully/properly support PEP621 (and that includes dependency specification per PEP631), and if there is some form of dependency specification that...

> If even permitting users to specify PEP compliant dependency versions is a dealbreaker (remember, people wanting poetry style versions can just specify that dependencies is a `dynamic` metadata key),...