Nriver/trilium-py

Question: What is the earliest python version to be supported?

jwhonce opened this issue · 3 comments

I have been working from the assumption that you intended to support Python 3.6+ is that true? You mentioned in another issue that the project was using default templates. If the project drops earlier versions that will clean up some of the typing code.

I would like to configure tox and add unit tests.

/jwh

    classifiers=[  # Optional
        # How mature is this project? Common values are
        #   3 - Alpha
        #   4 - Beta
        #   5 - Production/Stable
        'Development Status :: 5 - Production/Stable',

        # Indicate who your project is intended for
        'Intended Audience :: Developers',
        'Topic :: Software Development :: Build Tools',

        # Pick your license as you wish
        'License :: OSI Approved :: GNU Affero General Public License v3',

        # Specify the Python versions you support here. In particular, ensure
        # that you indicate you support Python 3. These classifiers are *not*
        # checked by 'pip install'. See instead 'python_requires' below.
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        'Programming Language :: Python :: 3 :: Only',
    ],
Nriver commented

What is the minimal version do you suggest? Just checked the minimal version on my machines is 3.9

3.9 is a good place for the cut off. MacOS users will need to install python via homebrew but that is something they should do anyway. If you agree, I can put together a PR setting that up.

Nriver commented

Sounds good, go ahead.