| Index: vpython/venv/config.go
|
| diff --git a/vpython/venv/config.go b/vpython/venv/config.go
|
| index 265a081ec406507b4f2dc4453a006842da8ac950..ae8824cbcbb7b6ad2f3ddec4ee23e5d215e7fb56 100644
|
| --- a/vpython/venv/config.go
|
| +++ b/vpython/venv/config.go
|
| @@ -184,7 +184,7 @@ func (cfg *Config) makeEnv(c context.Context, e *vpython.Environment) (*Env, err
|
| // EnvName returns the VirtualEnv environment name for the environment that cfg
|
| // describes.
|
| func (cfg *Config) envNameForSpec(s *vpython.Spec) string {
|
| - name := spec.Hash(s)
|
| + name := spec.Hash(s, EnvironmentVersion)
|
| if cfg.MaxHashLen > 0 && len(name) > cfg.MaxHashLen {
|
| name = name[:cfg.MaxHashLen]
|
| }
|
|
|