Hi, I'm getting this error when installing latest release with poetry on macos: ``` poetry add swat Using version ^1.13.3 for swat Updating dependencies Resolving dependencies... (2.7s) Package operations: 2 installs, 0 updates, 0 removals • Installing requests (2.31.0) • Installing swat (1.13.3): Failed RuntimeError Unable to find installation candidates for swat (1.13.3) ``` However installing directly from the url works fine: ``` poetry add https://github.com/sassoftware/python-swat/releases/download/v1.13.3/python-swat-1.13.3+REST-only-osx-64.tar.gz Updating dependencies Resolving dependencies... (0.5s) Package operations: 1 install, 0 updates, 0 removals • Installing swat (1.13.3 https://github.com/sassoftware/python-swat/releases/download/v1.13.3/python-swat-1.13.3+REST-only-osx-64.tar.gz) Writing lock file ``` Why is this happening? Thank you