From 20d99a090492b6651dec7b11337c92060bbf9216 Mon Sep 17 00:00:00 2001 From: Remi Gau Date: Fri, 21 Jun 2024 21:41:11 +0200 Subject: [PATCH 1/2] fix package name --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 815635d..cdc46c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,13 +21,13 @@ description = "Reproschema Python library" dynamic = ["version"] license = {text = "Apache License, 2.0"} maintainers = [{name = "Repronim developers", email = "info@repronim.org"}] -name = "reproschema-py" +name = "reproschema" readme = "README.md" requires-python = ">=3.8" [project.optional-dependencies] -all = ["reproschema-py[doc]", "reproschema-py[test]"] -dev = ["reproschema-py[doc]", "reproschema-py[test]", "black", "pre-commit"] +all = ["reproschema[doc]", "reproschema[test]"] +dev = ["reproschema[doc]", "reproschema[test]", "black", "pre-commit"] doc = [ "packaging", "sphinx >= 2.1.2", @@ -36,7 +36,7 @@ doc = [ "sphinxcontrib-napoleon", "sphinxcontrib-versioning" ] -docs = ["reproschema-py[doc]"] +docs = ["reproschema[doc]"] # For running unit and docstring tests test = [ "pytest >= 4.4.0", @@ -46,7 +46,7 @@ test = [ "pytest-rerunfailures", "codecov" ] -tests = ["reproschema-py[test]"] +tests = ["reproschema[test]"] [project.scripts] reproschema = "reproschema.cli:main" From 93429dd6d24ee95eaf39788a074c1a9720aab0de Mon Sep 17 00:00:00 2001 From: Remi Gau Date: Fri, 21 Jun 2024 22:06:34 +0200 Subject: [PATCH 2/2] bump minimum python version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cdc46c6..3278889 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ license = {text = "Apache License, 2.0"} maintainers = [{name = "Repronim developers", email = "info@repronim.org"}] name = "reproschema" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.10" [project.optional-dependencies] all = ["reproschema[doc]", "reproschema[test]"]