Skip to content

Commit bf0482a

Browse files
authored
[dev] bump to version 0.7.6 (#26)
- change setuptools to flit
1 parent 33b2b59 commit bf0482a

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

.github/workflows/mppq_unittest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python -m pip uninstall ppq mppq -q --no-input -y
3131
python -m pip install -U pytest pytest-cov
3232
python -m pip install -U onnx "protobuf<6" pooch tabulate tqdm
33-
python -m pip install -e . --no-deps --no-build-isolation
33+
python -m pip install -e . --no-deps
3434
- name: Run pytest and coverage
3535
run: |
3636
python -m pytest --cov=mppq tests

mppq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
from mppq import api
1111

1212
__all__ = ["api"]
13-
__version__ = "0.7.5"
13+
__version__ = "0.7.6"

pyproject.toml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
2-
requires = ["setuptools"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["flit_core >=3.2,<4"]
3+
build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "mppq"
@@ -34,15 +34,6 @@ dynamic = ["version"]
3434
[project.urls]
3535
Home = "https://github.com/LoSealL/ppq"
3636

37-
[tool.setuptools.dynamic]
38-
version = { attr = "mppq.__version__" }
39-
40-
[tool.setuptools.packages.find]
41-
include = ["mppq*"]
42-
43-
[tool.setuptools.package-data]
44-
mppq = ["**/*.cu", "**/*.cuh", "**/*.cc", "**/*.h"]
45-
4637
[tool.pyright]
4738
include = ["mppq"]
4839
# TODO: temporarily ignore this file

0 commit comments

Comments
 (0)