Skip to content

Commit c0fa1ee

Browse files
authored
Rename the package from LSFClusterManager.jl to LSFClusterManagers.jl (#9)
Ref #5. I think the name of this package should probably be pluralized, based on the [package naming guidelines here](https://pkgdocs.julialang.org/v1/creating-packages/#Package-naming-rules): > Packages that provide most of their functionality in association with a new type should have pluralized names.
1 parent 7e0dae4 commit c0fa1ee

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "LSFClusterManager"
1+
name = "LSFClusterManagers"
22
uuid = "af02cf76-cbe3-4eeb-96a8-af9391005858"
33
version = "1.0.0-DEV"
44

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# LSFClusterManager.jl
1+
# LSFClusterManagers.jl
22

3-
The `LSFClusterManager.jl` package implements code for the LSF (Load Sharing Facility) compute cluster job queue system.
3+
The `LSFClusterManagers.jl` package implements code for the LSF (Load Sharing Facility) compute cluster job queue system.
44

5-
`LSFClusterManager.LSFManager` supports IBM's scheduler. See the `addprocs_lsf` docstring
5+
`LSFClusterManagers.LSFManager` supports IBM's scheduler. See the `addprocs_lsf` docstring
66
for more information.
77

8-
Implemented in this package (the `LSFClusterManager.jl` package):
8+
Implemented in this package (the `LSFClusterManagers.jl` package):
99

1010
| Job queue system | Command to add processors |
1111
| ---------------- | ------------------------- |
12-
| Load Sharing Facility (LSF) | `addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``)` or `addprocs(LSFClusterManager.LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle))` |
12+
| Load Sharing Facility (LSF) | `addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``)` or `addprocs(LSFClusterManagers.LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle))` |

src/LSFClusterManager.jl renamed to src/LSFClusterManagers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module LSFClusterManager
1+
module LSFClusterManagers
22

33
using Distributed
44
using Sockets

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import LSFClusterManager
1+
import LSFClusterManagers
22
import Test
33

44
import Distributed
@@ -11,15 +11,15 @@ using Distributed: remotecall_fetch, @spawnat
1111
using Test: @testset, @test, @test_skip
1212

1313
# LSF:
14-
using LSFClusterManager: addprocs_lsf, LSFManager
14+
using LSFClusterManagers: addprocs_lsf, LSFManager
1515

1616
const test_args = lowercase.(strip.(ARGS))
1717

1818
@info "" test_args
1919

2020
lsf_is_installed() = !isnothing(Sys.which("bsub"))
2121

22-
@testset "LSFClusterManager.jl" begin
22+
@testset "LSFClusterManagers.jl" begin
2323
if lsf_is_installed()
2424
@info "Running the LSF tests..." Sys.which("bsub")
2525
include("lsf.jl")

0 commit comments

Comments
 (0)