-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
* Support the semi-standardised ``CFLAGS``, ``MACOSX_DEPLOYMENT_TARGET`` and | ||
``MACOSX_ARCHITECTURE`` as aliases for the pre-existing ``CC_FLAGS``, | ||
``MACOS_DEPLOYMENT_TARGET`` and ``MACOS_ARCHITECTURE`` environment variables. | ||
|
||
* Fix building wheels with new setuptools+wheel versions. | ||
|
||
* .. rst-class:: in-red | ||
|
||
Remove ``cslug.__version__`` attribute. Use | ||
``importlib.metadata.version("cslug")`` instead. | ||
|
||
* .. rst-class:: in-red | ||
|
||
Fix the macOS deployment target not being enforced for targets below 10.12. | ||
|
||
* Drop end of life Python versions 3.6 and 3.7. | ||
|
||
* The build command in :class:`~cslug.exceptions.BuildError` now uses shell-like | ||
syntax instead of an argument list. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,8 @@ requires = ["setuptools>=61.0"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name="cslug" | ||
version = "0.7.0" | ||
name = "cslug" | ||
version = "1.0.0" | ||
authors = [ | ||
{ name="Brénainn Woodsend", email="[email protected]" }, | ||
] | ||
|