-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing python packaging - project can be wheel and sdist now
- Loading branch information
Showing
4 changed files
with
15 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,2 @@ | ||
include *.h | ||
include debian/changelog |
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 |
---|---|---|
@@ -1,3 +1,11 @@ | ||
python-fastrpc (8.0.6) UNRELEASED; urgency=medium | ||
|
||
* Wheel support | ||
* Fixing header includes to the source package | ||
* Fixing python package naming | ||
|
||
-- Aleksey Rembish <[email protected]> Fri, 15 Sep 2017 10:41:24 +0200 | ||
|
||
python-fastrpc (8.0.5) stable; urgency=medium | ||
|
||
* fix: fixed problem with dump dict key if is not string #GDPR_RS-108 | ||
|
@@ -43,7 +51,7 @@ python-fastrpc (8.0.2) stable; urgency=medium | |
python-fastrpc (8.0.1) stable; urgency=medium | ||
|
||
* Revert " support for native string in signature for python 3" | ||
* | ||
* | ||
* This reverts commit 3f303dbdfe72831833faa65056b2bdb3f303c86c. | ||
* #3798 debian stretch - osetreni v ServerProxy_ServerProxy | ||
* support for native string in signature for python 3 | ||
|
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,3 @@ | ||
[bdist_wheel] | ||
universal = 1 | ||
|
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 |
---|---|---|
|
@@ -71,7 +71,7 @@ def wrapper(): | |
author_email = "[email protected]" | ||
|
||
setup( | ||
name="fastrpc", | ||
name="python-fastrpc", | ||
version=version, | ||
author=author, | ||
author_email=author_email, | ||
|