I have the same GPU in my Windows laptop and the 1.3.1+cu117 wheels work fine for me:
>>> import torch
>>> torch.__version__
'1.13.1+cu117'
>>> torch.cuda.is_available()
True
>>> torch.cuda.get_device_properties(0)
_CudaDeviceProperties(name='GeForce MX150', major=6, minor=1, total_memory=2048MB, multi_processor_count=3)
>>> torch.randn(1).cuda()
tensor([-0.9126], device='cuda:0')