Skip to content

Commit

Permalink
Deprecate Python 3.8 and add 3.12 (#387)
Browse files Browse the repository at this point in the history
* Deprecate 3.8 and add 3.12.

* Update pyproject.toml to beta version.
  • Loading branch information
JoeZiminski authored May 3, 2024
1 parent 69f8a84 commit 6bb3062
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ authors = [
{name = "Adam Tyson", email = "[email protected]"},
{name = "Niko Sirmpilatze", email = "[email protected]"},
]
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"}

Expand All @@ -25,13 +25,13 @@ dependencies = [
]

classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 4 - Beta",
"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",
]
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 6bb3062

Please sign in to comment.