-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
56 additions
and
41 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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
parmap (unreleased) | ||
|
||
[Maintenance] | ||
|
||
* Schedule CI every 3 months, to verify everything is in order even when there is no activity in the project | ||
* Test python versions 3.8-3.11 | ||
* Remove conda-recipe from this repo, since it's been on conda-forge for a while now | ||
* Replace setuptools with hatchling | ||
|
||
-- Sergio Oller <[email protected]> Fri, 08 Sep 2023 06:46:02 +0200 | ||
|
||
parmap (1.6.0) | ||
* Drop support for unsupported python versions (3.6) | ||
* Let pm_pbar be a dictionary (besides a bool) with additional tqdm | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,6 +1,48 @@ | ||
[project] | ||
name = "parmap" | ||
version = "1.6.0" | ||
authors = [ | ||
{ name="Sergio Oller", email="[email protected]" }, | ||
] | ||
description = "map and starmap implementations passing additional arguments and parallelizing if possible" | ||
license = "Apache-2.0" | ||
readme = "README.rst" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"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", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/zeehio/parmap" | ||
"Bug Tracker" = "https://github.com/zeehio/parmap/issues" | ||
|
||
[project.optional-dependencies] | ||
progress_bar = ["tqdm>=4.8.4"] | ||
|
||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.build] | ||
ignore-vcs = true | ||
include = [ | ||
"parmap", | ||
"*.txt", | ||
"README.rst", | ||
"ChangeLog", | ||
"docs/*.rst", | ||
"docs/conf.py", | ||
"docs/Makefile", | ||
"docs/make.bat", | ||
] | ||
|
||
[tool.tox] | ||
legacy_tox_ini = """ | ||
|