diff --git a/docs/community/index.rst b/docs/community/index.rst index d1317ae..b1f630d 100644 --- a/docs/community/index.rst +++ b/docs/community/index.rst @@ -13,12 +13,12 @@ The SSI provides `good guidance `_ + * Added option to use "English Longbow" as a bowstyle alias + * Old field classifications archived but still available using ``old`` in the function calls. See `related API documentation `_ + +* Test suite extended to cover Python 3.13 +* Linting moved to use ruff v0.7.3 +* Coverage workflows updated to latest versions + + +Version 1.0.0 +------------- +* Initial release of archeryutils. diff --git a/docs/getting-started/installation.rst b/docs/getting-started/installation.rst index bc0ebc7..74eb717 100644 --- a/docs/getting-started/installation.rst +++ b/docs/getting-started/installation.rst @@ -54,16 +54,12 @@ lint For applying quality control to the code:: - pip install -e ".[lint]" - -* black (24.1.0 or later) -* jupyter-black -* pylint +* ruff (0.7.3 or later) * mypy (1.0.0 or later) * coverage * pytest (7.2.0 or later) * pytest-mock -* pydocstyle +* blackdoc docs ^^^^ @@ -78,3 +74,5 @@ For building documentation:: * nbsphinx * blackdoc * ipython +* pickleshare +* ruff (0.7.3 or later) diff --git a/pyproject.toml b/pyproject.toml index 5385e09..bbc3835 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "archeryutils" -version = "1.0.0" +version = "1.1.0" description = "A collection of archery utilities in python." authors = [ { name="Jack Atkinson", email="jack.atkinson1000@gmail.com" }, @@ -39,7 +39,7 @@ lint = [ "coverage", "pytest>=7.2.0", "pytest-mock", - "ruff>=0.3.0", + "ruff>=0.7.3", "blackdoc", ] docs = [ @@ -49,7 +49,7 @@ docs = [ "nbsphinx", "ipython", "pickleshare", # https://github.com/ipython/ipython/issues/14237 - "ruff>=0.3.0", + "ruff>=0.7.3", "blackdoc", ]