marrow / mailer

A light-weight, modular, message representation and mail delivery framework for Python.
MIT License
276 stars 62 forks source link

Fix for Setuptools>=66 #102

Closed DanielOverdevest closed 1 year ago

DanielOverdevest commented 1 year ago

Problem

Problem from setuptools version 66 they only allow versions in follow format. 4.1.3.d0 is not allowed.

Error setuptools.extern.packaging.version.InvalidVersion: Invalid version: '4.1.3d0'

Background information

A pre-release tag is a series of letters that are alphabetically before “final”. Some examples of prerelease tags would include alpha, beta, a, c, dev, and so on. You do not have to place a dot or dash before the prerelease tag if it’s immediately after a number, but it’s okay to do so if you prefer. Thus, 2.4c1 and 2.4.c1 and 2.4-c1 all represent release candidate 1 of version 2.4, and are treated as identical by setuptools. Note that only a, b, and rc are PEP 440-compliant pre-release tags. source: https://setuptools.pypa.io/en/latest/userguide/distribution.html

DanielOverdevest commented 12 months ago

Thanks for merging.