From 3f7cf7deff1af1510a215645e504a2432ec117dd Mon Sep 17 00:00:00 2001 From: teutoburg Date: Mon, 30 Sep 2024 14:14:42 +0200 Subject: [PATCH 1/3] Add Python 3.13 to the test matrix --- .github/workflows/tests.yml | 2 +- .github/workflows/updated_tests.yml | 2 +- .github/workflows/webtests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 72ce32c..838ac67 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,7 +33,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.10', '3.11', '3.12'] + python-version: ['3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/updated_tests.yml b/.github/workflows/updated_tests.yml index 1e919b7..fcb413e 100644 --- a/.github/workflows/updated_tests.yml +++ b/.github/workflows/updated_tests.yml @@ -23,7 +23,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.10', '3.12'] + python-version: ['3.10', '3.13'] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/webtests.yml b/.github/workflows/webtests.yml index 70f219d..f62710e 100644 --- a/.github/workflows/webtests.yml +++ b/.github/workflows/webtests.yml @@ -25,7 +25,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.10', '3.12'] + python-version: ['3.10', '3.13'] steps: - uses: actions/checkout@v4 From 877f08b7c8e953398a3aeab7d3955cf281a3e1f9 Mon Sep 17 00:00:00 2001 From: teutoburg Date: Wed, 16 Oct 2024 11:30:54 +0200 Subject: [PATCH 2/3] Bump pytest from 7.4.3 to 8.2.0 This also resulted in pluggy being bumped from 1.3.0 to 1.5.0. --- poetry.lock | 22 +++++++++++----------- pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/poetry.lock b/poetry.lock index ceb0131..33854da 100644 --- a/poetry.lock +++ b/poetry.lock @@ -161,13 +161,13 @@ files = [ [[package]] name = "pluggy" -version = "1.3.0" +version = "1.5.0" description = "plugin and hook calling mechanisms for python" optional = false python-versions = ">=3.8" files = [ - {file = "pluggy-1.3.0-py3-none-any.whl", hash = "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7"}, - {file = "pluggy-1.3.0.tar.gz", hash = "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12"}, + {file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"}, + {file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"}, ] [package.extras] @@ -176,13 +176,13 @@ testing = ["pytest", "pytest-benchmark"] [[package]] name = "pytest" -version = "7.4.3" +version = "8.2.0" description = "pytest: simple powerful testing with Python" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "pytest-7.4.3-py3-none-any.whl", hash = "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac"}, - {file = "pytest-7.4.3.tar.gz", hash = "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5"}, + {file = "pytest-8.2.0-py3-none-any.whl", hash = "sha256:1733f0620f6cda4095bbf0d9ff8022486e91892245bb9e7d5542c018f612f233"}, + {file = "pytest-8.2.0.tar.gz", hash = "sha256:d507d4482197eac0ba2bae2e9babf0672eb333017bcedaa5fb1a3d42c1174b3f"}, ] [package.dependencies] @@ -190,11 +190,11 @@ colorama = {version = "*", markers = "sys_platform == \"win32\""} exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} iniconfig = "*" packaging = "*" -pluggy = ">=0.12,<2.0" -tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} +pluggy = ">=1.5,<2.0" +tomli = {version = ">=1", markers = "python_version < \"3.11\""} [package.extras] -testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] +dev = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] [[package]] name = "pytest-cov" @@ -228,4 +228,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "0a45fc61ed0439a4b18170ea5098d927f40d127ae40f4d520bfe33597fb51695" +content-hash = "33f41b12add6061d83331aa9e8b861490aa89c3943dd0b996e2bcd7183b72a3d" diff --git a/pyproject.toml b/pyproject.toml index a7a56ba..07abc57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ python = "^3.10" numpy = "^1.26.3" [tool.poetry.group.test.dependencies] -pytest = "^7.4.3" +pytest = "^8.2.0" pytest-cov = "^4.1.0" [build-system] From ef219d7a632f8a9af271834c39c6f8762d7b6e5c Mon Sep 17 00:00:00 2001 From: teutoburg Date: Wed, 16 Oct 2024 11:32:54 +0200 Subject: [PATCH 3/3] Bumping version from 0.4-alpha to 0.4 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 07abc57..9125c74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "astarsample" -version = "0.4-alpha" +version = "0.4" description = "Example project" readme = "README.md" license = "GPL-3.0-or-later"