-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #451 from petl-developers/migrate-org-20180725
Migrate to shared org
- Loading branch information
Showing
21 changed files
with
315 additions
and
192 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,4 @@ | ||
[report] | ||
exclude_lines = | ||
pragma: no cover | ||
pragma: ${PY_MAJOR_VERSION} no cover |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
branches: | ||
only: | ||
- master | ||
|
||
environment: | ||
|
||
global: | ||
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the | ||
# /E:ON and /V:ON options are not enabled in the batch script intepreter | ||
# See: http://stackoverflow.com/a/13751649/163740 | ||
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\build.cmd" | ||
|
||
matrix: | ||
|
||
- PYTHON: "C:\\Python27" | ||
PYTHON_VERSION: "2.7" | ||
|
||
- PYTHON: "C:\\Python27-x64" | ||
PYTHON_VERSION: "2.7" | ||
DISTUTILS_USE_SDK: "1" | ||
|
||
- PYTHON: "C:\\Python34" | ||
PYTHON_VERSION: "3.4" | ||
|
||
- PYTHON: "C:\\Python34-x64" | ||
PYTHON_VERSION: "3.4" | ||
DISTUTILS_USE_SDK: "1" | ||
|
||
- PYTHON: "C:\\Python35" | ||
PYTHON_VERSION: "3.5" | ||
|
||
- PYTHON: "C:\\Python35-x64" | ||
PYTHON_VERSION: "3.5" | ||
|
||
- PYTHON: "C:\\Python36" | ||
PYTHON_VERSION: "3.6" | ||
|
||
- PYTHON: "C:\\Python36-x64" | ||
PYTHON_VERSION: "3.6" | ||
|
||
install: | ||
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" | ||
|
||
build: off | ||
|
||
test_script: | ||
- "%CMD_IN_ENV% python -m pip install -U pip setuptools wheel nose" | ||
- "%CMD_IN_ENV% python setup.py install" | ||
- "%CMD_IN_ENV% python -m nose -v petl" |
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,47 @@ | ||
:: To build extensions for 64 bit Python 3, we need to configure environment | ||
:: variables to use the MSVC 2010 C++ compilers from GRMSDKX_EN_DVD.iso of: | ||
:: MS Windows SDK for Windows 7 and .NET Framework 4 (SDK v7.1) | ||
:: | ||
:: To build extensions for 64 bit Python 2, we need to configure environment | ||
:: variables to use the MSVC 2008 C++ compilers from GRMSDKX_EN_DVD.iso of: | ||
:: MS Windows SDK for Windows 7 and .NET Framework 3.5 (SDK v7.0) | ||
:: | ||
:: 32 bit builds do not require specific environment configurations. | ||
:: | ||
:: Note: this script needs to be run with the /E:ON and /V:ON flags for the | ||
:: cmd interpreter, at least for (SDK v7.0) | ||
:: | ||
:: More details at: | ||
:: https://github.com/cython/cython/wiki/64BitCythonExtensionsOnWindows | ||
:: http://stackoverflow.com/a/13751649/163740 | ||
:: | ||
:: Author: Olivier Grisel | ||
:: License: CC0 1.0 Universal: http://creativecommons.org/publicdomain/zero/1.0/ | ||
@ECHO OFF | ||
|
||
SET COMMAND_TO_RUN=%* | ||
SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows | ||
|
||
SET MAJOR_PYTHON_VERSION="%PYTHON_VERSION:~0,1%" | ||
IF %MAJOR_PYTHON_VERSION% == "2" ( | ||
SET WINDOWS_SDK_VERSION="v7.0" | ||
) ELSE IF %MAJOR_PYTHON_VERSION% == "3" ( | ||
SET WINDOWS_SDK_VERSION="v7.1" | ||
) ELSE ( | ||
ECHO Unsupported Python version: "%MAJOR_PYTHON_VERSION%" | ||
EXIT 1 | ||
) | ||
|
||
IF "%DISTUTILS_USE_SDK%"=="1" ( | ||
ECHO Configuring Windows SDK %WINDOWS_SDK_VERSION% for Python %MAJOR_PYTHON_VERSION% on a 64 bit architecture | ||
SET DISTUTILS_USE_SDK=1 | ||
SET MSSdk=1 | ||
"%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Setup\WindowsSdkVer.exe" -q -version:%WINDOWS_SDK_VERSION% | ||
"%WIN_SDK_ROOT%\%WINDOWS_SDK_VERSION%\Bin\SetEnv.cmd" /x64 /release | ||
ECHO Executing: %COMMAND_TO_RUN% | ||
call %COMMAND_TO_RUN% || EXIT 1 | ||
) ELSE ( | ||
ECHO Using default MSVC build environment | ||
ECHO Executing: %COMMAND_TO_RUN% | ||
call %COMMAND_TO_RUN% || EXIT 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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
Acknowledgments | ||
=============== | ||
|
||
This is community-maintained software. The following people have contributed to | ||
the development of this package: | ||
|
||
* Alexander Stauber | ||
* Alistair Miles (`alimanfoo <https://github.com/alimanfoo>`_) | ||
* Andreas Porevopoulos (`sv1jsb <https://github.com/sv1jsb>`_) | ||
* Andrew Kim (`andrewakim <https://github.com/andrewakim>`_) | ||
* Brad Maggard (`bmaggard <https://github.com/bmaggard>`_) | ||
* Caleb Lloyd (`caleblloyd <https://github.com/caleblloyd>`_) | ||
* César Roldán (`ihuro <https://github.com/ihuro>`_) | ||
* Chris Lasher (`gotgenes <https://github.com/gotgenes>`_) | ||
* Dean Way (`DeanWay <https://github.com/DeanWay>`_) | ||
* Dustin Engstrom (`engstrom <https://github.com/engstrom>`_) | ||
* Florent Xicluna (`florentx <https://github.com/florentx>`_) | ||
* Henry Rizzi (`henryrizzi <https://github.com/henryrizzi>`_) | ||
* Jonathan Camile (`deytao <https://github.com/deytao>`_) | ||
* Jonathan Moss (`a-musing-moose <https://github.com/a-musing-moose>`_) | ||
* Kenneth Borthwick | ||
* Krisztián Fekete (`krisztianfekete <https://github.com/krisztianfekete>`_) | ||
* Matt Katz (`mattkatz <https://github.com/mattkatz>`_) | ||
* Matthew Scholefield (`MatthewScholefield <https://github.com/MatthewScholefield>`_) | ||
* Michael Rea (`rea725 <https://github.com/rea725>`_) | ||
* Olivier Macchioni (`omacchioni <https://github.com/omacchioni>`_) | ||
* Olivier Poitrey (`rs <https://github.com/rs>`_) | ||
* Pablo Castellano (`PabloCastellano <https://github.com/PabloCastellano>`_) | ||
* Paul Jensen (`psnj <https://github.com/psnj>`_) | ||
* Paulo Scardine (`scardine <https://github.com/scardine>`_) | ||
* Peder Jakobsen (`pjakobsen <https://github.com/pjakobsen>`_) | ||
* Phillip Knaus (`phillipknaus <https://github.com/phillipknauss>`_) | ||
* Richard Pearson (`podpearson <https://github.com/podpearson>`_) | ||
* Robert DeSimone (`icenine457 <https://github.com/icenine457>`_) | ||
* Robin Moss (`LupusUmbrae <https://github.com/LupusUmbrae>`_) | ||
* Roger Woodley (`rogerkwoodley <https://github.com/rogerkwoodley>`_) | ||
* Tucker Beck (`dusktreader <https://github.com/dusktreader>`_) | ||
* Viliam Segeďa (`vilos <https://github.com/vilos>`_) | ||
* Zach Palchick (`palchicz <https://github.com/palchicz>`_) | ||
* `adamsdarlingtower <https://github.com/adamsdarlingtower>`_ | ||
* `hugovk <https://github.com/hugovk>`_ | ||
* `imazor <https://github.com/imazor>`_ | ||
* `james-unified <https://github.com/james-unified>`_ | ||
* `Mgutjahr <https://github.com/Mgutjahr>`_ | ||
* `shayh <https://github.com/shayh>`_ | ||
* `thatneat <https://github.com/thatneat>`_ | ||
* `titusz <https://github.com/titusz>`_ | ||
* `zigen <https://github.com/zigen>`_ | ||
|
||
Development of petl has been supported by an open source license for | ||
`PyCharm <https://www.jetbrains.com/pycharm/>`_. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ petl - Extract, Transform and Load (Tables of Data) | |
and loading tables of data. | ||
|
||
- Documentation: http://petl.readthedocs.org/ | ||
- Source Code: https://github.com/alimanfoo/petl | ||
- Source Code: https://github.com/petl-developers/petl | ||
- Download: http://pypi.python.org/pypi/petl | ||
- Mailing List: http://groups.google.com/group/python-etl | ||
|
||
|
@@ -16,10 +16,10 @@ Please feel free to ask questions via the mailing list | |
|
||
To report installation problems, bugs or any other issues please email | ||
[email protected] or `raise an issue on GitHub | ||
<https://github.com/alimanfoo/petl/issues/new>`_. | ||
<https://github.com/petl-developers/petl/issues/new>`_. | ||
|
||
For an example of :mod:`petl` in use, see the `case study on comparing tables | ||
<http://nbviewer.ipython.org/github/alimanfoo/petl/tree/master/notes/case_study_1.ipynb>`_. | ||
<http://nbviewer.ipython.org/github/petl-developers/petl/tree/master/notes/case_study_1.ipynb>`_. | ||
|
||
For an alphabetic list of all functions in the package, | ||
see the :ref:`genindex`. | ||
|
@@ -38,6 +38,7 @@ see the :ref:`genindex`. | |
util | ||
changes | ||
contributing | ||
acknowledgments | ||
related_work | ||
|
||
Indices and tables | ||
|
Oops, something went wrong.