-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Turn tzdata
install requirement into optional timezone
dependency
#10331
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CodSpeed Performance ReportMerging #10331 will not alter performanceComparing Summary
|
@sydney-runkle: Please have a look. Thank you! |
sydney-runkle
approved these changes
Sep 6, 2024
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.
Great, thanks for the quick turnaround!
hswong3i
pushed a commit
to alvistack/pydantic-pydantic
that referenced
this pull request
Sep 6, 2024
git clean -xdf tar zcvf ../python-pydantic_2.9.0.orig.tar.gz --exclude=.git . debuild -uc -us cp python-pydantic.spec ../python-pydantic_2.9.0-1.spec cp ../python*-pydantic*2.9.0*.{gz,xz,spec,dsc} /osc/home\:alvistack/pydantic-pydantic-2.9.0/ rm -rf ../python*-pydantic*2.9.0*.* See pydantic#10331 Signed-off-by: Wong Hoi Sing Edison <[email protected]>
sydney-runkle
pushed a commit
that referenced
this pull request
Sep 9, 2024
hswong3i
pushed a commit
to alvistack/pydantic-pydantic
that referenced
this pull request
Sep 9, 2024
git clean -xdf tar zcvf ../python-pydantic_2.9.1.orig.tar.gz --exclude=.git . debuild -uc -us cp python-pydantic.spec ../python-pydantic_2.9.1-1.spec cp ../python*-pydantic*2.9.1*.{gz,xz,spec,dsc} /osc/home\:alvistack/pydantic-pydantic-2.9.1/ rm -rf ../python*-pydantic*2.9.1*.* See pydantic#10331 Signed-off-by: Wong Hoi Sing Edison <[email protected]>
arnout
pushed a commit
to buildroot/buildroot
that referenced
this pull request
Sep 9, 2024
pyproject.toml declared the tzdata package as a required dependency, but this is in fact only needed on win32. This was fixed upstream [1]. Since we don't actually check the runtime dependencies from pyproject.toml, we don't need to do anything in Buildroot. [1] pydantic/pydantic#10331 Signed-off-by: James Hilliard <[email protected]> [Arnout: remove tzdata runtime dependency] Signed-off-by: Arnout Vandecappelle <[email protected]>
hswong3i
pushed a commit
to alvistack/pydantic-pydantic
that referenced
this pull request
Sep 18, 2024
git clean -xdf tar zcvf ../python-pydantic_2.9.2.orig.tar.gz --exclude=.git . debuild -uc -us cp python-pydantic.spec ../python-pydantic_2.9.2-1.spec cp ../python*-pydantic*2.9.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/pydantic-pydantic-2.9.2/ rm -rf ../python*-pydantic*2.9.2*.* See pydantic#10331 Signed-off-by: Wong Hoi Sing Edison <[email protected]>
hswong3i
pushed a commit
to alvistack/pydantic-pydantic
that referenced
this pull request
Nov 14, 2024
git clean -xdf tar zcvf ../python-pydantic_2.9.2.orig.tar.gz --exclude=.git . debuild -uc -us cp python-pydantic.spec ../python-pydantic_2.9.2-1.spec cp ../python*-pydantic*2.9.2*.{gz,xz,spec,dsc} /osc/home\:alvistack/pydantic-pydantic-2.9.2/ rm -rf ../python*-pydantic*2.9.2*.* See pydantic#10331 Signed-off-by: Wong Hoi Sing Edison <[email protected]>
sfoster1
pushed a commit
to Opentrons/buildroot
that referenced
this pull request
Dec 6, 2024
pyproject.toml declared the tzdata package as a required dependency, but this is in fact only needed on win32. This was fixed upstream [1]. Since we don't actually check the runtime dependencies from pyproject.toml, we don't need to do anything in Buildroot. [1] pydantic/pydantic#10331 Signed-off-by: James Hilliard <[email protected]> [Arnout: remove tzdata runtime dependency] Signed-off-by: Arnout Vandecappelle <[email protected]>
sfoster1
pushed a commit
to Opentrons/buildroot
that referenced
this pull request
Dec 9, 2024
pyproject.toml declared the tzdata package as a required dependency, but this is in fact only needed on win32. This was fixed upstream [1]. Since we don't actually check the runtime dependencies from pyproject.toml, we don't need to do anything in Buildroot. [1] pydantic/pydantic#10331 Signed-off-by: James Hilliard <[email protected]> [Arnout: remove tzdata runtime dependency] Signed-off-by: Arnout Vandecappelle <[email protected]>
sfoster1
pushed a commit
to Opentrons/buildroot
that referenced
this pull request
Dec 18, 2024
pyproject.toml declared the tzdata package as a required dependency, but this is in fact only needed on win32. This was fixed upstream [1]. Since we don't actually check the runtime dependencies from pyproject.toml, we don't need to do anything in Buildroot. [1] pydantic/pydantic#10331 Signed-off-by: James Hilliard <[email protected]> [Arnout: remove tzdata runtime dependency] Signed-off-by: Arnout Vandecappelle <[email protected]>
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Change Summary
#9896 adds an install requirement for
tzdata
, which states:Non-Windows system typically have time zone data installed and do not need
tzdata
. This PR turns thetzdata
dependency into an optional dependency grouptimezone
. Documentation is updated accordingly.Related issue number
fix #10328
Checklist