Skip to content

Commit 0d9169d

Browse files
committed
Finish renaming
1 parent 5d162cb commit 0d9169d

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/unittest-flux-mpich.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
shell: bash -l {0}
3030
timeout-minutes: 5
3131
run: |
32-
conda create -y -n py312 python=3.12.1 pympipool
32+
conda create -y -n py312 python=3.12.1 executorlib
3333
pip install . --no-deps --no-build-isolation
3434
python -m unittest discover tests
3535
- name: Test Flux

.github/workflows/unittest-flux-openmpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
shell: bash -l {0}
3030
timeout-minutes: 5
3131
run: |
32-
conda create -y -n py312 python=3.12.1 pympipool
32+
conda create -y -n py312 python=3.12.1 executorlib
3333
pip install . --no-deps --no-build-isolation
3434
coverage run -a --omit="executorlib/_version.py,tests/*" -m unittest discover tests
3535
- name: Test Flux with OpenMPI

.github/workflows/unittest-mpich.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
timeout-minutes: 5
4343
run: |
4444
pip install versioneer[toml]==0.29
45-
conda create -y -n py312 python=3.12.1 pympipool
45+
conda create -y -n py312 python=3.12.1 executorlib
4646
pip install . --no-deps --no-build-isolation
4747
cd tests
4848
python -m unittest discover .

.github/workflows/unittest-openmpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
timeout-minutes: 5
4343
run: |
4444
pip install versioneer[toml]==0.29
45-
conda create -y -n py312 python=3.12.1 pympipool
45+
conda create -y -n py312 python=3.12.1 executorlib
4646
pip install . --no-deps --no-build-isolation
4747
cd tests
4848
python -m unittest discover .

.github/workflows/unittest-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
timeout-minutes: 5
3333
run: |
3434
pip install versioneer[toml]==0.29
35-
conda create -y -n py312 python=3.12.1 pympipool
35+
conda create -y -n py312 python=3.12.1 executorlib
3636
pip install . --no-deps --no-build-isolation
3737
cd tests
3838
python -m unittest discover .

.github/workflows/unittests-old.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
timeout-minutes: 5
2828
run: |
2929
pip install versioneer[toml]==0.29
30-
conda create -y -n py312 python=3.12.1 pympipool
30+
conda create -y -n py312 python=3.12.1 executorlib
3131
pip install . --no-deps --no-build-isolation
3232
cd tests
3333
python -m unittest discover .

executorlib/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def get_config() -> VersioneerConfig:
5050
cfg = VersioneerConfig()
5151
cfg.VCS = "git"
5252
cfg.style = "pep440-pre"
53-
cfg.tag_prefix = "pympipool-"
53+
cfg.tag_prefix = "executorlib-"
5454
cfg.parentdir_prefix = "executorlib"
5555
cfg.versionfile_source = "executorlib/_version.py"
5656
cfg.verbose = False

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["cloudpickle", "pyzmq", "setuptools", "versioneer[toml]==0.29"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "pympipool"
6+
name = "executorlib"
77
description = "Scale serial and MPI-parallel python functions over hundreds of compute nodes all from within a jupyter notebook or serial python process."
88
authors = [
99
{ name = "Jan Janssen", email = "[email protected]" },
@@ -49,7 +49,7 @@ graph = [
4949
]
5050

5151
[tool.setuptools.packages.find]
52-
include = ["pympipool*", "executorlib*"]
52+
include = ["executorlib*"]
5353

5454
[tool.setuptools.dynamic]
5555
version = {attr = "executorlib.__version__"}
@@ -59,4 +59,4 @@ VCS = "git"
5959
style = "pep440-pre"
6060
versionfile_source = "executorlib/_version.py"
6161
parentdir_prefix = "executorlib"
62-
tag_prefix = "pympipool-"
62+
tag_prefix = "executorlib-"

0 commit comments

Comments
 (0)