summaryrefslogtreecommitdiff
path: root/lang/python/setup.py
AgeCommit message (Collapse)Author
2016-12-14WT-3071 Fixed sign-conversion compiler errors in Java and Python SWIG code ↵Don Anderson
(#3194) Modified SWIG compilation for python to turn off sign conversion checks. There are a dozen or so sign conversion complaints in boiler-plate SWIG-Python utility functions that we can't do anything about. Since we'd like to build a tree with python enabled and sign conversions checks on everywhere else, this appears to be the best we can do.
2016-01-01Upgrade copyright notices from 2015 to 2016.Keith Bostic
2015-03-25Added -I include paths as needed to handle #include <3rdparty/...>Don Anderson
2015-01-04Copyright notices: add MongoDB, update to 2015.Keith Bostic
2014-10-01Rename RELEASE to be RELEASE_INFO, avoid collision with MsBuild defaultKeith Bostic
folder.
2014-09-05Rearrange the Python build so we generate object files under the build ↵Michael Cahill
directory. Clean up manually: don't rely on setup.py. refs #1188
2014-01-07Update copyright notices for 2014.Keith Bostic
Move lang/java and lang/python into the public domain.
2013-07-17Fix "make install" of Python. Remove old code and restructure the Python ↵Michael Cahill
sources under lang/python to simplify the installation step. --HG-- rename : lang/python/fpacking.py => lang/python/wiredtiger/fpacking.py rename : lang/python/intpack-test.py => lang/python/wiredtiger/intpack-test.py rename : lang/python/intpacking.py => lang/python/wiredtiger/intpacking.py rename : lang/python/packing-test.py => lang/python/wiredtiger/packing-test.py rename : lang/python/packing.py => lang/python/wiredtiger/packing.py
2013-05-08Suppress warnings building SWIG-generated Python code.Michael Cahill
2013-03-13Ignore warnings when building the Python SWIG wrapper.Alex Gorrod
2013-01-01Update copyright notice to 2013.Keith Bostic
2012-12-10Disable some GCC warning flags for the SWIG-generated Python code.Michael Cahill
2012-09-12lang/python/wiredtiger_wrap.c:5726:3: warning: expression result unusedMichael Cahill
; should this cast be to 'void'? [-Wunused-value]
2012-08-02Move dist/RELEASE to the top level of the tree.Michael Cahill
Bump the version to 1.2.3 to check that it is updated everywhere. --HG-- rename : dist/RELEASE => RELEASE
2012-07-30Fix warnings in SWIG code on OS X 10.8.Michael Cahill
2012-02-02Retain copyright on the Python API, add the SWIG license to the localKeith Bostic
directory.
2012-02-02The Python code is in the public domain.Keith Bostic
2011-09-02Split out the Python and examples from the top level Makefile.Michael Cahill
2011-08-26Add libtool to the build.Michael Cahill
While in the area, add a pkg-config file. * * * [mq]: build-fixes
2011-07-14Pass CFLAGS and LDFLAGS into the Python build explicitly in the Makefile.Michael Cahill
2011-07-14In the Python build, only set extra_*_args if CFLAGS or LDFLAGS are set.Michael Cahill
2011-07-14Pass CFLAGS and LDFLAGS through to the Python build.Michael Cahill
2011-04-26Another fix for relative paths in the Python build: setup.py wants to own ↵Michael Cahill
the tree.
2011-04-26Fix Python build again: split SWIG out of setup.py, we want to distribute theMichael Cahill
results so SWIG isn't required by users to build the Python API. This also addresses some annoyances with paths, since we want to build in a different place from the Python sources.
2011-04-26Keep the Python sources in lang/python: that's what we will want to distribute.Michael Cahill
2011-03-11Build the Python API into the build directory.Michael Cahill
* * * [mq]: config-script
2011-03-10Initial steps towards a Python API. Rename 'del' to 'remove': that seems ↵Michael Cahill
safe across languages. Remove underscores from struct names for now: that should be transparent to applications but avoids messiness in the Python API. refs #31