-
-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1929 add patch to fix python-lz4 bundling
git-svn-id: https://xpra.org/svn/Xpra/trunk@20171 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
3 changed files
with
23 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,15 @@ | ||
--- a/lz4/__init__.py 2018-08-22 05:32:48.000000000 +0700 | ||
+++ b/lz4/__init__.py 2018-08-22 05:33:44.000000000 +0700 | ||
@@ -2,8 +2,9 @@ | ||
try: | ||
__version__ = get_distribution(__name__).version | ||
except DistributionNotFound: | ||
- # package is not installed | ||
- pass | ||
+ #when packaging things, | ||
+ #get_distribution fails, and we just don't care: | ||
+ __version__ = "2.1.0" | ||
|
||
VERSION = __version__ | ||
|
||
|
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