-
Notifications
You must be signed in to change notification settings - Fork 1
Correct versioning comment and update classifiers #94
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
Conversation
Correct versioning comment and update classifiers
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #94 +/- ##
=======================================
Coverage 97.67% 97.67%
=======================================
Files 11 11
Lines 430 430
Branches 69 69
=======================================
Hits 420 420
Misses 6 6
Partials 4 4 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Pull request overview
This pull request updates the pyproject.toml file with two minor changes: correcting a grammatical error in a comment and updating the development status classifier from Pre-Alpha to Production/Stable.
Changes:
- Fixed typo in versioning comment: "chose" → "choose"
- Updated Development Status classifier from "2 - Pre-Alpha" to "5 - Production/Stable"
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| # Please consult https://pypi.org/classifiers/ for a full list. | ||
| classifiers = [ | ||
| "Development Status :: 2 - Pre-Alpha", | ||
| "Development Status :: 5 - Production/Stable", |
Copilot
AI
Feb 3, 2026
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.
The classifier update to "Development Status :: 5 - Production/Stable" should be reconsidered. The PyPI classifier "5 - Production/Stable" indicates that the software is "intended for production environments" and has a "stable, well-tested code base." However, this package is currently only published to TestPyPI (as seen in the deployment workflow and README installation instructions), which suggests it's not yet intended for production use. Additionally, src/wordguess/version.py shows a development version ('1.0.0.post1.dev60'). Consider using "Development Status :: 4 - Beta" instead, which is more appropriate for software that is feature-complete but may still have some issues to work out, or wait until the package is published to production PyPI before using the "Production/Stable" classifier.
| "Development Status :: 5 - Production/Stable", | |
| "Development Status :: 4 - Beta", |
This pull request makes minor updates to the
pyproject.tomlfile, correcting a comment and updating the project status classifier to reflect a stable release.Documentation improvements:
Metadata updates:
Development Statusclassifier from "2 - Pre-Alpha" to "5 - Production/Stable" to indicate the project is now stable.