-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
misc: simplify setup.py #3815
misc: simplify setup.py #3815
Conversation
cmdclass=cast(Mapping[str, type[Command]], versioneer.get_cmdclass()), | ||
packages=find_packages(), | ||
version=versioneer.get_version(), | ||
cmdclass=versioneer.get_cmdclass(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is well typed now
@@ -57,6 +57,7 @@ xdsl-tblgen = "xdsl.tools.tblgen_to_py:main" | |||
[tool.setuptools] | |||
platforms = ["Linux", "Mac OS-X", "Unix"] | |||
zip-safe = false | |||
packages = ["xdsl"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we only have one package, no need to auto-discover things
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3815 +/- ##
=======================================
Coverage 91.25% 91.25%
=======================================
Files 461 461
Lines 57557 57557
Branches 5549 5549
=======================================
Hits 52523 52523
Misses 3609 3609
Partials 1425 1425 ☔ View full report in Codecov by Sentry. |
Just a bit of simplification. I tried to remove the whole thing but versioneer breaks.