Skip to content

Commit

Permalink
explicitly install setuptools on macos-14
Browse files Browse the repository at this point in the history
  • Loading branch information
slayoo committed Apr 16, 2024
1 parent e1bf562 commit 305ff58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tests+pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ jobs:
sudo ln -s `which python3` /usr/local/bin/python
echo "PIP_INSTALL_ARGS=--break-system-packages" >> $GITHUB_ENV
type python
python -m pip install setuptools
- run: |
python -m pip install $PIP_INSTALL_ARGS -e . # to check if usable without test/example dependencies
python -We -c "import PyMPDATA"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_long_description():
description="Numba-accelerated Pythonic implementation of MPDATA "
"with examples in Python, Julia and Matlab",
use_scm_version={"local_scheme": lambda _: "", "version_scheme": "post-release"},
setup_requires=["setuptools", "setuptools_scm"],
setup_requires=["setuptools_scm"],
install_requires=[
"numba"
+ (
Expand Down

0 comments on commit 305ff58

Please sign in to comment.