proud-dentist-22844
05/25/2024, 4:02 AM:@# are out since they are special characters in the address syntax. But could I use / or . ?
And are the generated target names case sensitive?
(Context: I'm thinking about turning python_distribution into a target generator to resolve https://github.com/pantsbuild/pants/issues/15481 )proud-dentist-22844
05/25/2024, 4:42 AMpex_binaries uses this for the generated name:
entry_point_spec.replace(":", "-")curved-television-6568
05/25/2024, 6:50 AMcurved-television-6568
05/25/2024, 6:50 AMpub static ref BANNED_CHARS_IN_GENERATED_NAME: HashSet<char> =
[':', '#', '!', '@', '?', '='].into();proud-dentist-22844
05/25/2024, 2:43 PM