Skip to content

Commit 72fa772

Browse files
committed
Minor changes
1. Modification to remove imdreader reference from `*.md`, `*.toml` et. al. files
1 parent 3c72675 commit 72fa772

File tree

7 files changed

+15
-19
lines changed

7 files changed

+15
-19
lines changed

.github/workflows/gh-ci.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,6 @@ jobs:
9696
- name: Run IMDClient tests
9797
run: |
9898
pytest -n auto -v --cov=imdclient --cov-report=xml --color=yes imdclient/tests/test_imdclient.py
99-
100-
- name: Run IMDReader tests
101-
run: |
102-
pytest -n auto -v --cov=imdclient --cov-report=xml --color=yes imdclient/tests/test_imdreader.py
10399
104100
- name: codecov
105101
if: github.event_name != 'schedule'

AUTHORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ IMDClient was created by Lawson in 2024.
44

55

66
<!-- All contributing authors are listed in this file below.
7-
The repository history at https://github.com/becksteinlab/imdreader
7+
The repository history at https://github.com/becksteinlab/imdclient
88
and the CHANGELOG show individual code contributions. -->
99

1010
## Chronological list of authors

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ IMDClient
2323

2424
Receiver for [IMDv3 protocol](https://imdclient.readthedocs.io/en/latest/protocol_v3.html) from simulation engines like Gromacs, LAMMPS, and NAMD.
2525

26-
IMDClient is bound by a [Code of Conduct](https://github.com/becksteinlab/imdreader/blob/main/CODE_OF_CONDUCT.md).
26+
IMDClient is bound by a [Code of Conduct](https://github.com/becksteinlab/imdclient/blob/main/CODE_OF_CONDUCT.md).
2727

2828
### Installation
2929

@@ -53,8 +53,8 @@ conda activate imdclient
5353
<!-- Install the development and documentation dependencies:
5454
5555
```
56-
conda env update --name imdreader --file devtools/conda-envs/test_env.yaml
57-
conda env update --name imdreader --file docs/requirements.yaml
56+
conda env update --name imdclient --file devtools/conda-envs/test_env.yaml
57+
conda env update --name imdclient --file docs/requirements.yaml
5858
``` -->
5959

6060
Build this package from source:

docs/requirements.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: imdreader-docs
1+
name: imdclient-docs
22
channels:
33

44
- conda-forge

examples/gromacs/slurm/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
Full walkthrough
22
================
33

4-
Create IMDReader mamba env
4+
Create IMDClient mamba env
55
--------------------------
66

77
Assuming you're in a login node to start, get a compute node:
88
```bash
99
salloc -p general
1010
```
1111

12-
From the compute node, create env with name "imdreader-test":
12+
From the compute node, create env with name "imdclient-test":
1313
```bash
1414
mkdir -p workspace
1515
cd workspace
16-
git clone https://github.com/Becksteinlab/imdreader.git
16+
git clone https://github.com/Becksteinlab/imdclient.git
1717
cd imdreader
1818
git checkout develop
1919
module load mamba/latest
2020
mamba env create --file devtools/conda-envs/test_env.yaml
21-
source activate imdreader-test
21+
source activate imdclient-test
2222
pip install -e .
2323
```
2424

examples/gromacs/slurm/imd.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env | grep ^SLURM | sort
1717
env | grep CUDA
1818

1919
module load mamba/latest
20-
source activate imdreader-test
20+
source activate imdclient-test
2121

2222
output_dir="output_${SLURM_JOB_ID}"
2323
mkdir -p $output_dir
@@ -36,7 +36,7 @@ while ! await_gmx_imd; do
3636
sleep 5
3737
done
3838

39-
echo "GROMACS is ready. Running IMDReader"
39+
echo "GROMACS is ready. Running IMD-reader"
4040

4141
python client.py
4242

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@ doc = [
4141
]
4242

4343
# [project.urls]
44-
# source = "https://github.com/becksteinlab/imdreader"
45-
# documentation = "https://imdreader.readthedocs.io"
44+
# source = "https://github.com/becksteinlab/imdclient"
45+
# documentation = "https://imdclient.readthedocs.io"
4646

4747
[tool.setuptools]
4848
packages = ["imdclient"]
4949

5050
# Installs tests datafiles
5151
[tool.setuptools.package-data]
52-
"imdreader" = ["data/*"]
52+
"imdclient" = ["data/*"]
5353

5454
[tool.pytest.ini_options]
5555
minversion = "6.0"
5656
testpaths = [
57-
"imdreader/tests",
57+
"imdclient/tests",
5858
]
5959

6060
[tool.black]

0 commit comments

Comments
 (0)