From 0fd693113ca7934799bb3231cca727bb1b17267c Mon Sep 17 00:00:00 2001 From: kashi-x Date: Sat, 22 Jun 2024 18:13:13 +0900 Subject: [PATCH 1/3] add all pixi configure --- templates/Python.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/templates/Python.gitignore b/templates/Python.gitignore index 68bc17f9..cbdcd7bb 100644 --- a/templates/Python.gitignore +++ b/templates/Python.gitignore @@ -109,6 +109,13 @@ ipython_config.py # https://pdm.fming.dev/#use-with-ide .pdm.toml +# pixi +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. +#pixi.lock +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one +# in the .venv directory. It is recommended not to include this directory in version control. +.pixi + # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/ From c43c69994f1f2d72963f8c19187c81ee282c97b4 Mon Sep 17 00:00:00 2001 From: kashi-x Date: Sat, 22 Jun 2024 18:31:31 +0900 Subject: [PATCH 2/3] add pixi to patch --- templates/Python.patch | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/Python.patch b/templates/Python.patch index f5ee37a9..59ea3a00 100644 --- a/templates/Python.patch +++ b/templates/Python.patch @@ -6,3 +6,11 @@ poetry.toml # LSP config files pyrightconfig.json + +# pixi +# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. +#pixi.lock +# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one +# in the .venv directory. It is recommended not to include this directory in version control. +.pixi + From 03462b48bc1fdd14c721a69c49618bac4251b4d3 Mon Sep 17 00:00:00 2001 From: kashi-x Date: Sat, 22 Jun 2024 18:32:37 +0900 Subject: [PATCH 3/3] remove change from Python.gitignore --- templates/Python.gitignore | 7 ------- 1 file changed, 7 deletions(-) diff --git a/templates/Python.gitignore b/templates/Python.gitignore index cbdcd7bb..68bc17f9 100644 --- a/templates/Python.gitignore +++ b/templates/Python.gitignore @@ -109,13 +109,6 @@ ipython_config.py # https://pdm.fming.dev/#use-with-ide .pdm.toml -# pixi -# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control. -#pixi.lock -# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one -# in the .venv directory. It is recommended not to include this directory in version control. -.pixi - # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/