Author: tomwhite
Date: Wed Jan 6 11:51:32 2016
New Revision: 1723288
URL: http://svn.apache.org/viewvc?rev=1723288&view=rev
Log:
AVRO-1770. Python 3 overwrites custom README.txt. Contributed by blue.
Modified:
avro/branches/branch-1.8/CHANGES.txt
avro/branches/branch-1.8/lang/py3/setup.py
Modified: avro/branches/branch-1.8/CHANGES.txt
URL:
http://svn.apache.org/viewvc/avro/branches/branch-1.8/CHANGES.txt?rev=1723288&r1=1723287&r2=1723288&view=diff
==============================================================================
--- avro/branches/branch-1.8/CHANGES.txt (original)
+++ avro/branches/branch-1.8/CHANGES.txt Wed Jan 6 11:51:32 2016
@@ -235,6 +235,8 @@ Avro 1.8.0 (15 December 2015)
AVRO-1560: C: Fix build for custom libsnappy location. (Ujjwal via
martinkl)
+ AVRO-1770. Python 3 overwrites custom README.txt (blue via tomwhite)
+
Avro 1.7.7 (23 July 2014)
NEW FEATURES
Modified: avro/branches/branch-1.8/lang/py3/setup.py
URL:
http://svn.apache.org/viewvc/avro/branches/branch-1.8/lang/py3/setup.py?rev=1723288&r1=1723287&r2=1723288&view=diff
==============================================================================
--- avro/branches/branch-1.8/lang/py3/setup.py (original)
+++ avro/branches/branch-1.8/lang/py3/setup.py Wed Jan 6 11:51:32 2016
@@ -59,12 +59,6 @@ def SetupSources():
# Avro top-level source directory:
root_dir = os.path.dirname(os.path.dirname(py3_dir))
- # Copy README.txt from Avro top-level directory:
- shutil.copy(
- src=os.path.join(root_dir, 'README.txt'),
- dst=os.path.join(py3_dir, 'README.txt'),
- )
-
# Read and copy Avro version:
version_file_path = os.path.join(root_dir, 'share', VERSION_FILE_NAME)
with open(version_file_path, 'r') as f: