Skip to content

Commit 17c54b1

Browse files
Fix version (is 1.2, not 1.3)
1 parent f37989c commit 17c54b1

File tree

4 files changed

+8
-12
lines changed

4 files changed

+8
-12
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
on:
44
push:
5-
branches: [dev*, master]
5+
branches: [fix*, dev*, master]
66
pull_request:
77
branches:
88
- master

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cmake_policy(SET CMP0074 NEW) # force find_package to take <PackageName>_ROOT va
99
# Project
1010
# ----------------------------------------------------------------------
1111
project(
12-
pytest_parallel VERSION 1.3.0
12+
pytest_parallel VERSION 1.2.0
1313
DESCRIPTION "pytest_parallel extends PyTest to support parallel testing using mpi4py"
1414
)
1515

pyproject.toml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,16 @@ requires = [
44
]
55
build-backend = "setuptools.build_meta"
66

7-
[tool.setuptools.packages.find]
8-
where = ["."]
9-
exclude = ["pytest_mpi_check"]
10-
namespaces = false
11-
127
[project]
138
name = "pytest_parallel"
14-
description = "Plugin to manage test in distributed way with MPI Standard"
9+
description = "pytest_parallel extends PyTest to support parallel testing using mpi4py"
1510
readme = "README.md"
1611
authors = [
1712
{name = "Bruno Maugars", email = "[email protected]"},
1813
{name = "Berenger Berthoul", email = "[email protected]"},
1914
]
2015
maintainers = [
21-
{name = "Berenger Berthoul", email = "bruno.maugars@onera.fr"},
16+
{name = "Berenger Berthoul", email = "berenger.berthoul@onera.fr"},
2217
]
2318
license = {text = "Mozilla Public License 2.0"}
2419
keywords = [
@@ -41,6 +36,7 @@ classifiers = [
4136
"Programming Language :: Python :: 3.9",
4237
"Programming Language :: Python :: 3.10",
4338
"Programming Language :: Python :: 3.11",
39+
"Programming Language :: Python :: 3.12",
4440
"Programming Language :: Python :: 3 :: Only",
4541
"Programming Language :: Python :: Implementation :: CPython",
4642
"Topic :: Software Development :: Testing",
@@ -50,9 +46,9 @@ requires-python = ">=3.8"
5046
dependencies = [
5147
"pytest>=6.2.5",
5248
"mpi4py",
53-
"numpy",
49+
"numpy", # Only for internal tests TODO remove
5450
]
55-
version = "1.3.0"
51+
version = "1.2.0"
5652

5753
[project.urls]
5854
Homepage = "https://github.com/onera/pytest_parallel"

pytest_parallel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "1.3"
1+
__version__ = "1.2"
22

33
from . import mark

0 commit comments

Comments
 (0)