[yt-svn] commit/yt: 3 new changesets

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Wed Jun 15 14:42:46 PDT 2016


3 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/8f4454e16e5e/
Changeset:   8f4454e16e5e
Branch:      yt
User:        MatthewTurk
Date:        2016-06-14 20:30:29+00:00
Summary:     Adding *.pxd files to package_data so they get installed.
Affected #:  1 file

diff -r d62475df07a54fba4396d34aa339ce1ef05939ae -r 8f4454e16e5e945ba46acc4d61c12135cfbfd7f1 setup.py
--- a/setup.py
+++ b/setup.py
@@ -338,6 +338,9 @@
         cythonize(cython_extensions)
         _sdist.run(self)
 
+packages = find_packages()
+package_data = dict((pkg, ['*.pxd']) for pkg in packages)
+
 setup(
     name="yt",
     version=VERSION,
@@ -369,7 +372,8 @@
             'answer-testing = yt.utilities.answer_testing.framework:AnswerTesting'
     ]
     },
-    packages=find_packages(),
+    packages=packages,
+    package_data = package_data,
     setup_requires=[
         'numpy',
         'cython>=0.22',
@@ -390,7 +394,7 @@
     zip_safe=False,
     scripts=["scripts/iyt"],
     data_files=MAPSERVER_FILES + [(SHADERS_DIR, SHADERS_FILES)],
-    ext_modules=cython_extensions + extensions
+    ext_modules=cython_extensions + extensions,
 )
 
 # This info about 'ckdtree' should be incorporated somehow...


https://bitbucket.org/yt_analysis/yt/commits/6ea643fe1270/
Changeset:   6ea643fe1270
Branch:      yt
User:        MatthewTurk
Date:        2016-06-15 18:25:35+00:00
Summary:     Making this more terse
Affected #:  1 file

diff -r 8f4454e16e5e945ba46acc4d61c12135cfbfd7f1 -r 6ea643fe127015c762f5e98708bcd97d674fd2d6 setup.py
--- a/setup.py
+++ b/setup.py
@@ -338,9 +338,6 @@
         cythonize(cython_extensions)
         _sdist.run(self)
 
-packages = find_packages()
-package_data = dict((pkg, ['*.pxd']) for pkg in packages)
-
 setup(
     name="yt",
     version=VERSION,
@@ -372,8 +369,8 @@
             'answer-testing = yt.utilities.answer_testing.framework:AnswerTesting'
     ]
     },
-    packages=packages,
-    package_data = package_data,
+    packages=find_packages(),
+    package_data = {'':['*.pxd']},
     setup_requires=[
         'numpy',
         'cython>=0.22',


https://bitbucket.org/yt_analysis/yt/commits/dfe34c8552f4/
Changeset:   dfe34c8552f4
Branch:      yt
User:        ngoldbaum
Date:        2016-06-15 21:42:37+00:00
Summary:     Merged in MatthewTurk/yt (pull request #2231)

Adding pxd files to installation
Affected #:  1 file

diff -r 096d35d844284e415ea399313e59ccc90a160b1e -r dfe34c8552f4bb62b86c8d6e3990f41025ec9cd6 setup.py
--- a/setup.py
+++ b/setup.py
@@ -363,6 +363,7 @@
     ]
     },
     packages=find_packages(),
+    package_data = {'':['*.pxd']},
     setup_requires=[
         'numpy',
         'cython>=0.22',
@@ -383,7 +384,7 @@
     zip_safe=False,
     scripts=["scripts/iyt"],
     data_files=MAPSERVER_FILES + [(SHADERS_DIR, SHADERS_FILES)],
-    ext_modules=cython_extensions + extensions
+    ext_modules=cython_extensions + extensions,
 )
 
 # This info about 'ckdtree' should be incorporated somehow...

Repository URL: https://bitbucket.org/yt_analysis/yt/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the yt-svn mailing list