From d23d350bf76b217f1ff1f37824f7978c10e2ecd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Rast?= Date: Mon, 7 Aug 2023 11:08:34 +0200 Subject: [PATCH] Updated readme and project definition --- README.rst | 3 +++ pyproject.toml | 2 +- requirements.txt | 2 +- setup.py | 5 +++++ 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 1618ffd..1bd978c 100644 --- a/README.rst +++ b/README.rst @@ -71,10 +71,13 @@ Installation .. csv-table:: :header: "Package Version", "LittleFS Version", "LittleFS File System Version" + 0.6.0, 2.7.0, 2.0 / 2.1 [#f1]_ 0.5.0, 2.6.1, 2.1 0.4.0, 2.2.1, 2.0 0.3.0, 2.2.1, 2.0 + .. [#f1] See ``test/test_multiversion.py`` for examples. + This is as simple as it can be:: diff --git a/pyproject.toml b/pyproject.toml index 6e0ce7b..693fef4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,2 @@ [build-system] -requires = ["setuptools", "wheel", "Cython"] \ No newline at end of file +requires = ["setuptools", "wheel", "Cython>=0.29.31"] \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index d1a9803..6defce7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -Cython>=0.29.13 +Cython>=0.29.31 tox>=3.14.0 pytest>=4.0.0 setuptools_scm>=3.3.3 \ No newline at end of file diff --git a/setup.py b/setup.py index 3fd15e5..b39d3b3 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,11 @@ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Programming Language :: Python :: 3', + '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', 'Topic :: Scientific/Engineering', 'Topic :: Software Development :: Embedded Systems', 'Topic :: Software Development :: Libraries',