Hi, facing an edge case in the @pypi decorator Wh...
# ask-metaflow
s
Hi, facing an edge case in the @pypi decorator When installing packages like
package==1.2.3
it works fine, however, for some of our internal packages we use a slightly different naming scheme
package==1.2.3.rc1+TASKID
- this currently breaks, my guess is because of the
+
in the name Running
pip install package==1.2.3.rc1+TASKID
works though, it only breaks inside of the pypi decorator
1