WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit acab604

Browse files
committed
Do not depend on pympipool during build
1 parent fced243 commit acab604

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
python-version: "3.11"
2525
- name: Install dependencies
26-
run: python -m pip install --user --upgrade numpy pympipool setuptools wheel versioneer
26+
run: python -m pip install --user --upgrade setuptools wheel versioneer
2727
- name: Convert dependencies
2828
run: |
2929
cp .ci_support/environment-old.yml environment.yml

pylammpsmpi/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
from pylammpsmpi.wrapper.extended import LammpsLibrary
2-
from pylammpsmpi.wrapper.concurrent import LammpsConcurrent
3-
from pylammpsmpi.wrapper.base import LammpsBase
4-
51
from ._version import get_versions
62

73
try:
4+
from pylammpsmpi.wrapper.extended import LammpsLibrary
5+
from pylammpsmpi.wrapper.concurrent import LammpsConcurrent
6+
from pylammpsmpi.wrapper.base import LammpsBase
87
from pylammpsmpi.wrapper.ase import LammpsASELibrary
98
except ImportError:
109
pass

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["pympipool", "numpy", "setuptools", "versioneer[toml]==0.29"]
2+
requires = ["setuptools", "versioneer[toml]==0.29"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

0 commit comments

Comments
 (0)