From 833d1291e025d8e9d709c4feb7e3b34a585cb451 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 23 Jan 2023 23:08:04 +0000 Subject: [PATCH 1/3] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/macisamuele/language-formatters-pre-commit-hooks: v2.5.0 → v2.6.0](https://github.com/macisamuele/language-formatters-pre-commit-hooks/compare/v2.5.0...v2.6.0) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5d37d4af..61a23c80 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: - id: debug-statements - id: mixed-line-ending - repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks - rev: v2.5.0 + rev: v2.6.0 hooks: - id: pretty-format-yaml args: [--autofix, --preserve-quotes] From e15b3fdbe8346d4899ffb190bf3f14256995c634 Mon Sep 17 00:00:00 2001 From: Mattia Almansi Date: Tue, 24 Jan 2023 09:59:06 +0100 Subject: [PATCH 2/3] fix toml --- .pre-commit-config.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 61a23c80..0230178c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,7 +20,6 @@ repos: args: [--autofix, --preserve-quotes] - id: pretty-format-toml args: [--autofix] - additional_dependencies: [toml-sort<0.22.0] - repo: https://github.com/pycqa/isort rev: 5.11.4 hooks: From 8736020c0ec78c06ecd9eb23dea17454d5bca464 Mon Sep 17 00:00:00 2001 From: Mattia Almansi Date: Tue, 24 Jan 2023 10:14:57 +0100 Subject: [PATCH 3/3] qa --- pyproject.toml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d9d8c095..08046872 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,27 +2,27 @@ requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] [project] -name = "oceanspy" -description = "A Python package to facilitate ocean model data analysis and visualization." -readme = "README.rst" -license = {file = "LICENSE"} classifiers = [ - "Development Status :: 4 - Beta", - "Intended Audience :: Science/Research", - "License :: OSI Approved :: MIT License", - "Operating System :: OS Independent", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Topic :: Scientific/Engineering" + "Development Status :: 4 - Beta", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Topic :: Scientific/Engineering" ] -dynamic = ["version"] dependencies = [ - "dask", - "xarray >= 0.14.1", - "xgcm >= 0.2.0" - ] + "dask", + "xarray >= 0.14.1", + "xgcm >= 0.2.0" +] +description = "A Python package to facilitate ocean model data analysis and visualization." +dynamic = ["version"] +license = {file = "LICENSE"} +name = "oceanspy" +readme = "README.rst" requires-python = ">=3.9" [tool.coverage.run] @@ -32,8 +32,8 @@ branch = true profile = "black" [tool.pytest.ini_options] -testpaths = ["oceanspy/tests"] addopts = "-v --cov" +testpaths = ["oceanspy/tests"] [tool.setuptools] packages = ["oceanspy"]