Skip to content

Commit

Permalink
Update setuptools (stanford-centaur#331)
Browse files Browse the repository at this point in the history
* Remove setuptools downgrade step on macOS

* Specify empty packages in setup.py
  • Loading branch information
CyanoKobalamyne authored Jul 9, 2024
1 parent 5d5e9ea commit 36f0e81
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ jobs:
python3 -m venv ./.venv
echo "$PWD/.venv/bin" >> $GITHUB_PATH
# install previous version of setuptools as temporary fix
# see also recommendations here: https://github.com/pypa/setuptools/issues/3227
- name: Python Dependencies (macOS)
if: runner.os == 'macOS'
run: python3 -m pip install 'setuptools<61'

- name: Python Dependencies (all)
run: python3 -m pip install Cython pytest pyparsing toml

Expand Down
1 change: 1 addition & 0 deletions python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ setup(name='pono',
license='BSD',
install_requires=['smt-switch'],
test_requires=['pytest'],
packages=[],
package_data={'': ['pono.so']},
zip_safe=False)

0 comments on commit 36f0e81

Please sign in to comment.