-
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
4 changed files
with
30 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
""" | ||
""" | ||
|
||
__version__ = '0.3.0' | ||
__version__ = '0.4.0' | ||
__version_info__ = tuple(map(int, __version__.split("."))) |
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
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
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 @@ | ||
* Force ``setup.py bdist_wheel`` to run ``clean --all``. | ||
Doing so blocks setuptools from dumping files for the wrong platform from | ||
the build cache folder into a wheel without any check to see if it is | ||
required. | ||
See :class:`cslug.building.bdist_wheel` for details. | ||
|
||
* Support Android running Termux_. | ||
|
||
* .. rst-class:: in-red | ||
|
||
Drop the :c:`mblen()` function from :mod:`cslug.stdlib` due to its | ||
unavailability on Android. | ||
|
||
* Support Cygwin Python and Cygwin native |gcc|. | ||
Formerly, |cslug| supported a Cygwin environment but only using a regular | ||
MSVC build of Python and |gcc| cross compile headers for building generic | ||
Windows applications. | ||
|
||
.. _Termux: https://termux.com/ |