sdispater / pendulum

Python datetimes made easy
https://pendulum.eustace.io
MIT License
6.12k stars 372 forks source link

Fix invalid email character in pyproject.toml #824

Closed eigendude closed 1 month ago

eigendude commented 1 month ago

Description

When updating my Pendulum recipe for my OpenEmbedded-based system, an invalid character in the email address caused setuptools to throw an error. The character can simply be removed.

How has this been tested?

Before:

The following error occurs during build time when installing Pendulum with setuptools:

| ValueError: Invalid addr_spec; only 'sebastien@eustace.io' could be parsed from 'sebastien@eustace.io>'

After:

import pendulum succeeds in the installed system.

Pull Request Check List

eigendude commented 1 month ago

Sorry, duplicate of https://github.com/sdispater/pendulum/pull/813.