Skip to content

Commit

Permalink
Merge pull request #137 from melexis/fix-editable-build
Browse files Browse the repository at this point in the history
Fix editable build
  • Loading branch information
Letme authored Jan 21, 2024
2 parents 1e34b73 + 8d0fea5 commit e12d16f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
- name: Static checks
if: matrix.python-version == '3.10'
run: tox -e check
- name: Test editable installation with pip
run: pip install -e .
- name: Upload HTML documentation
if: matrix.python-version == '3.10'
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
zip_safe=False,
license='Apache License, Version 2.0',
platforms='any',
packages=find_namespace_packages(where='src/', include=['mlx.warnings']),
packages=find_namespace_packages(where='src', include=['mlx.warnings']),
package_dir={'': 'src'},
entry_points={'console_scripts': ['mlx-warnings = mlx.warnings.warnings:main']},
install_requires=requires,
Expand Down

0 comments on commit e12d16f

Please sign in to comment.