From a3c3cbc244f5340fadc44813c8380a3f5f9b4b5d Mon Sep 17 00:00:00 2001 From: Christian Ledermann Date: Sun, 17 Nov 2024 11:11:59 +0000 Subject: [PATCH] update README installation command, bump version to 1.0.0, and change development status to stable --- README.rst | 2 +- fastkml/about.py | 2 +- pyproject.toml | 11 +---------- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index 4c8f58b2..3fe99453 100644 --- a/README.rst +++ b/README.rst @@ -116,7 +116,7 @@ Optional .. code-block:: bash - pip install --pre "fastkml[lxml]" + pip install "fastkml[lxml]" Limitations =========== diff --git a/fastkml/about.py b/fastkml/about.py index 578573fc..e9524133 100644 --- a/fastkml/about.py +++ b/fastkml/about.py @@ -19,6 +19,6 @@ The only purpose of this module is to provide a version number for the package. """ -__version__ = "1.0.0rc2" +__version__ = "1.0.0" __all__ = ["__version__"] diff --git a/pyproject.toml b/pyproject.toml index 674d2541..5b7dd697 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ { email = "christian.ledermann@gmail.com", name = "Christian Ledermann" }, ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Operating System :: OS Independent", @@ -227,15 +227,6 @@ select = [ "S101", "SLF001", ] -"tests/oldunit_test.py" = [ - "D100", - "D200", - "D401", - "E501", - "FIX", - "ICN001", - "TD", -] "tests/repr_eq_test.py" = [ "E501", ]