Any way to run cgenff_charmm2gmx.py script on python 3.10?

GROMACS version: 2023.3
GROMACS modification:
Is there any way to adopt the cgenff_charmm2gmx.py script to run on machine with python 3.10 installed. Basically this script has its python 3.7 version GitHub - Lemkul-Lab/cgenff_charmm2gmx: Python scripts to convert CGenFF stream files to GROMACS format

If it’s stated you need Python 3.7, you can simply download a Miniconda with an older version of Python, or (if you’re already using conda) create a virtual environment specifying that you want Python 3.7:

conda create --name myenv python=3.7
conda activate myenv