Skip to content

Commit 0237ddd

Browse files
authored
Fix Misc Building issues. (#52)
2 parents 6673aa6 + 9caad5b commit 0237ddd

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,15 @@ jobs:
4848
if: ${{ matrix.python-version == '3.14' }}
4949
run: flake8 matplotlib_inline --ignore=E501,W504,W503
5050

51+
- name: Test Build
52+
if: ${{ matrix.python-version == '3.14' }}
53+
run: |
54+
pip install build
55+
python -m build
56+
5157
- name: Install ruff
5258
if: ${{ matrix.python-version == '3.14' }}
53-
run: pip install ruff
59+
run: pip install ruff
5460

5561
- name: Check code with ruff
5662
if: ${{ matrix.python-version == '3.14' }}

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ classifiers = [
1717
"Framework :: Jupyter",
1818
"Intended Audience :: Developers",
1919
"Intended Audience :: Science/Research",
20-
"License-Expression: BSD-3-Clause",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)