Skip to content

Commit

Permalink
pip build; dont use numpy 2
Browse files Browse the repository at this point in the history
  • Loading branch information
JarrettSJohnson committed Jul 9, 2024
1 parent ae5ff74 commit 41e33fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
git clone --depth 1 https://github.com/rcsb/mmtf-cpp.git
cp -R mmtf-cpp/include/mmtf* include/
- name: Pip install python-build
run: |
pip install build
- name: Build
run: |
pip install -v --config-settings testing=True .
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ authors = [
{name = "Schrodinger", email = "[email protected]"},
]
dependencies = [
"numpy>=1.26.4",
"numpy>=1.26.4,<2",
]

[build-system]
build-backend = "backend"
backend-path = ["_custom_build"]
requires = [
"numpy>=1.26.4",
"numpy>=1.26.4,<2",
"setuptools>=69.2.0",
]

Expand Down

0 comments on commit 41e33fe

Please sign in to comment.