-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from phargogh/feature/95-support-python-3.12
Test on 3.12, drop support for 3.7
- Loading branch information
Showing
5 changed files
with
48 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[project] | ||
name = "taskgraph" | ||
description = "Parallel task graph framework" | ||
readme = "README.rst" | ||
requires-python = ">=3.6" | ||
license = {file = "LICENSE.txt"} | ||
maintainers = [ | ||
{name = "Natural Capital Project Software Team"} | ||
] | ||
keywords = ["parallel", "multiprocessing", "distributed", "computing"] | ||
classifiers = [ | ||
"Intended Audience :: Developers", | ||
"Topic :: System :: Distributed Computing", | ||
"Development Status :: 5 - Production/Stable", | ||
"Natural Language :: English", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft", | ||
"Operating System :: POSIX", | ||
"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", | ||
"License :: OSI Approved :: BSD License" | ||
] | ||
# the version is provided dynamically by setuptools_scm | ||
# `dependencies` and `optional-dependencies` are provided by setuptools | ||
# using the corresponding setup args `install_requires` and `extras_require` | ||
dynamic = ["version", "dependencies", "optional-dependencies"] | ||
|
||
[build-system] | ||
requires = [ | ||
'wheel', 'setuptools_scm>=8.0' | ||
] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] | ||
version_scheme = "post-release" | ||
local_scheme = "node-and-date" |
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ python = | |
3.9: py39 | ||
3.10: py310 | ||
3.11: py311 | ||
3.12: py312 | ||
|
||
[testenv] | ||
commands = | ||
|