-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate Python 3.8 and add 3.12 (#387)
* Deprecate 3.8 and add 3.12. * Update pyproject.toml to beta version.
- Loading branch information
1 parent
69f8a84
commit 6bb3062
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"} | ||
|
||
|
@@ -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", | ||
] | ||
|
@@ -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 | ||
|
||
|