-
Notifications
You must be signed in to change notification settings - Fork 11
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
.github: Migrate to the pyproject.toml #56
Conversation
@darjeeling will handle to support uv with future PR. |
@hexoul Ready to get review :) |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #56 +/- ##
===========================================
+ Coverage 81.30% 93.41% +12.11%
===========================================
Files 23 24 +1
Lines 706 714 +8
===========================================
+ Hits 574 667 +93
+ Misses 132 47 -85
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
I agree with this PR |
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.
Nice work!
Co-authored-by: Seunggon Kim <crosien@gmail.com>
Co-authored-by: Seunggon Kim <crosien@gmail.com>
@hexoul Done except the comment I leave: https://github.com/line/centraldogma-python/pull/56/files#r1828632599 |
.github/workflows/test.yml
Outdated
@@ -11,10 +11,18 @@ jobs: | |||
runs-on: ubuntu-latest | |||
steps: | |||
- uses: actions/checkout@v4 | |||
- uses: ammaraskar/sphinx-action@master | |||
- name: Set up Python ${{ matrix.python-version }} |
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.
matrix.python-version
seems not available in docs
job.
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.
Ah thank you for catching.
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.
@corona10 Thanks again!
Python community are now dropping the requirements.txt based project and moving to use pyproject.toml instead.
See: https://peps.python.org/pep-0518/
For this change, we need to drop supporting Python 3.8 but it will be okay since we already decided to drop supporting Python 3.8 at #54