Macでpoetry実行中に下記警告が出たので対応しました。
過去にもディレクトリに関する警告は表示されていましたが、今回も同様にconfig.toml
を指定のディレクトリに移動して対応しました。
バージョン
% poetry --version Poetry (version 1.5.0)
warning内容
Configuration file exists at $HOME/Library/Preferences/pypoetry, reusing this directory. Consider moving TOML configuration files to $HOME/Library/Application Support/pypoetry, as support for the legacy directory will be removed in an upcoming release.
警告内容では、「設定ファイルは$HOME/Library/Preferences/pypoetry
に存在し、このディレクトリを再利用しています。レガシーディレクトリのサポートは今後のリリースで削除される予定ですので、TOML設定ファイルを$HOME/Library/Application Support/pypoetry
に移動することを検討してください。」と表示されているため、移動します。
※一部環境変数に置き換えていますのでご注意ください。
% cd $HOME/Library/Preferences/pypoetry % ls config.toml poetry.lock pyproject.toml % mv config.toml "$HOME/Library/Application Support/pypoetry" % ls poetry.lock pyproject.toml % ls "$HOME/Library/Application Support/pypoetry" VERSION config.toml poetry venv
以上です。