We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I am on the latest Pendulum version.
I have searched the issues of this repo and believe that this is not a duplicate.
OS version and name: Fedora Linux 43
Pendulum version: 3.1.0
Hi, I'm trying to build pendulum for Fedora Linux with Python 3.14.0b1. I see two issues happening there.
test_from_format results in Segmentation fault for two parameters:
test_from_format
("1234567890", "X", "2009-02-13T23:31:30+00:00", None), ("1234567890123", "x", "2009-02-13T23:31:30.123000+00:00", None),
When removed these, the test suite runs successfully, but with two more failures:
__________________________________________ test_local_time_positive_integer ___________________________________________ def test_local_time_positive_integer(): d = pendulum.datetime(2016, 8, 7, 12, 34, 56, 123456) t = local_time(d.int_timestamp, 0, d.microsecond) > assert d.year == t[0] E AssertionError: assert 2016 == 8 E + where 2016 = DateTime(2016, 8, 7, 12, 34, 56, 123456, tzinfo=Timezone('UTC')).year tests/helpers/test_local_time.py:12: AssertionError __________________________________________ test_local_time_negative_integer ___________________________________________ def test_local_time_negative_integer(): d = pendulum.datetime(1951, 8, 7, 12, 34, 56, 123456) t = local_time(d.int_timestamp, 0, d.microsecond) > assert d.year == t[0] E AssertionError: assert 1951 == 8 E + where 1951 = DateTime(1951, 8, 7, 12, 34, 56, 123456, tzinfo=Timezone('UTC')).year
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am on the latest Pendulum version.
I have searched the issues of this repo and believe that this is not a duplicate.
OS version and name: Fedora Linux 43
Pendulum version: 3.1.0
Issue
Hi, I'm trying to build pendulum for Fedora Linux with Python 3.14.0b1.
I see two issues happening there.
test_from_format
results in Segmentation fault for two parameters:When removed these, the test suite runs successfully, but with two more failures:
The text was updated successfully, but these errors were encountered: