From 44fd4ce040e3e512213f7dc49b0861d8b9b2861b Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Thu, 2 May 2024 15:18:07 +0100 Subject: [PATCH 1/2] Deprecate 3.8 and add 3.12. --- .github/workflows/code_test_and_deploy.yml | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/code_test_and_deploy.yml b/.github/workflows/code_test_and_deploy.yml index 8c598610..48a780b6 100644 --- a/.github/workflows/code_test_and_deploy.yml +++ b/.github/workflows/code_test_and_deploy.yml @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest, macos-14, ubuntu-latest] - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 0c3372cd..c3f0f020 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,9 +5,9 @@ authors = [ {name = "Adam Tyson", email = "code@adamltyson.com"}, {name = "Niko Sirmpilatze", email = "niko.sirbiladze@gmail.com"}, ] -description = "DataShuttle automates the creation and management of standardised neuroscience project folders." +description = "DataShuttle automates the creation, validation and transfer of neuroscience project folders." readme = "README.md" -requires-python = ">=3.8.0" +requires-python = ">=3.9.0" dynamic = ["version"] license = {text = "BSD-3-Clause"} @@ -28,10 +28,10 @@ classifiers = [ "Development Status :: 2 - Pre-Alpha", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: OS Independent", "License :: OSI Approved :: BSD License", ] @@ -90,7 +90,7 @@ exclude = ["tests*", "docs*"] addopts = "--cov=datashuttle" [tool.black] -target-version = ['py38', 'py39', 'py310', 'py311'] +target-version = ['py39', 'py310', 'py311', 'py312'] skip-string-normalization = false line-length = 79 From 1db75282df5c7591159339b6e5a7bd71c660ad8d Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Thu, 2 May 2024 15:20:47 +0100 Subject: [PATCH 2/2] Update pyproject.toml to beta version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c3f0f020..9bd5fdea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ dependencies = [ ] classifiers = [ - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9",