Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cython, cythonize commands print a specific error when file does not exist ↵ | Matus Valo | 2022-11-08 | 1 | -4/+13 |
| | | | | (#4629) | ||||
* | Let "cythonize --help" output the supported environment variables (GH-4952) | Matus Valo | 2022-08-05 | 1 | -2/+10 |
| | | | Closes https://github.com/cython/cython/issues/1711 | ||||
* | Add depfile generation support to cythonize (GH-4563) | Evgeni Burovski | 2022-01-14 | 1 | -0/+2 |
| | | | | | | | | Add a new command line option so that $ cythonize -M foo.pyx produces a file `foo.c.dep` with dependencies of foo.pyx, in addition to `foo.c`. Try to write relative paths as much as possible. Closes https://github.com/cython/cython/issues/1214 | ||||
* | Fix the handling of --annotate-fullc in cythonize.py (GH-3103) | realead | 2019-09-18 | 1 | -6/+8 |
| | |||||
* | Replace custom command line parser with argparse (GH-3001) | realead | 2019-08-04 | 1 | -27/+2 |
| | |||||
* | Minor code simplification. | Stefan Behnel | 2019-06-11 | 1 | -1/+1 |
| | |||||
* | Fix interspersed positional arguments in cythonize.py (GH-2988) | realead | 2019-06-11 | 1 | -2/+11 |
| | |||||
* | Replace "--annotate=fullc" with "--annotate-fullc" to fix a regression from ↵ | realead | 2019-06-07 | 1 | -4/+5 |
| | | | | GH-2858 (GH-2986) | ||||
* | Support showing the complete C code in the annotated html-file (GH-2858) | realead | 2019-05-30 | 1 | -3/+4 |
| | |||||
* | using default usage-message | Egor Dranischnikow | 2019-05-15 | 1 | -1/+1 |
| | |||||
* | using argparse instead of optparse | Egor Dranischnikow | 2019-05-15 | 1 | -54/+54 |
| | |||||
* | extract create_args_parser(), add hook parse_args_raw and add unit-tests | Egor Dranischnikow | 2019-05-15 | 1 | -2/+10 |
| | |||||
* | Move the setting of the new cythonize option "--no-docstrings" to a better ↵ | Stefan Behnel | 2019-03-12 | 1 | -3/+3 |
| | | | | place where it does not interfere with using `Cythonize` as a module. | ||||
* | cythonize --no-docstrings (#2889) | 墨焓 | 2019-03-12 | 1 | -0/+5 |
| | | | | | | | | * cythonize -D, --no-docstrings Add `-D, --no-docstrings` option for the cythonize script. * remove the short `-D` option, remaining only `--no-docstrings` | ||||
* | Use the same list of potential package init file names everywhere (not just ↵gh2665_package_init_pyx | Stefan Behnel | 2019-01-11 | 1 | -1/+1 |
| | | | | | | "__init__.py" but also .pxd and .pyx). Closes #2665. | ||||
* | Don't try to use imap with python3 | Charles Pigott | 2018-12-11 | 1 | -1/+4 |
| | |||||
* | Document "language_level=3str" and also support it in the cythonize command ↵ | Stefan Behnel | 2018-09-29 | 1 | -1/+3 |
| | | | | as "--3str". | ||||
* | Allow explicit "-2" option for the cythonize script to set the language ↵ | Stefan Behnel | 2018-08-25 | 1 | -3/+6 |
| | | | | level to 2 (the current, but not future, default). | ||||
* | Improve variable name. | Stefan Behnel | 2018-06-11 | 1 | -2/+2 |
| | |||||
* | PEP8 correction | Jerome Kieffer | 2018-06-11 | 1 | -3/+8 |
| | |||||
* | typo | Jerome Kieffer | 2018-06-11 | 1 | -1/+1 |
| | |||||
* | Fix cythonize so that the variable are actually passed to the compiler | Jerome Kieffer | 2018-06-11 | 1 | -6/+17 |
| | |||||
* | Exposes compile_time_env to the command line | Jerome Kieffer | 2018-06-08 | 1 | -0/+3 |
| | | | close #2314 | ||||
* | Add infrastructure for migrating options to compiler directives. | Robert Bradshaw | 2016-07-27 | 1 | -1/+1 |
| | |||||
* | adapt usages of map() to Py2/Py3 | Stefan Behnel | 2015-07-25 | 1 | -2/+2 |
| | |||||
* | Print error on non-matching glob source input. | Robert Bradshaw | 2015-01-08 | 1 | -2/+1 |
| | | | | Also extend glob to support bash {a,b,c} notation (needed for Cythonize script). | ||||
* | provide -a/--annotate option for cythonize script | Stefan Behnel | 2014-10-11 | 1 | -0/+5 |
| | |||||
* | use explicit relative imports everywhere and enable absolute imports by default | Stefan Behnel | 2014-06-17 | 1 | -4/+6 |
| | |||||
* | clean up distutils argument handling in cythonize script, avoid unnecessary ↵ | Stefan Behnel | 2013-09-29 | 1 | -19/+22 |
| | | | | cwd changing, move intermediate compiler artifacts into temp directory and delete them afterwards | ||||
* | remove unused import | Stefan Behnel | 2013-09-29 | 1 | -1/+0 |
| | |||||
* | add -3 option to cythonize script to make it easier to compile in Py3 mode | Stefan Behnel | 2013-08-25 | 1 | -0/+4 |
| | |||||
* | add --quiet and --force options to cythonize script | Stefan Behnel | 2013-08-25 | 1 | -0/+6 |
| | |||||
* | fix directive parsing in cythonize script | Stefan Behnel | 2013-08-20 | 1 | -2/+2 |
| | |||||
* | properly support '**' pattern in file selection | Stefan Behnel | 2013-08-11 | 1 | -3/+3 |
| | |||||
* | fix base path finding for in-place compilation | Stefan Behnel | 2013-08-11 | 1 | -6/+5 |
| | |||||
* | Py2.4 fix, no need to join the process pool in the error termination case | Stefan Behnel | 2013-08-11 | 1 | -2/+0 |
| | |||||
* | minor safety fix | Stefan Behnel | 2013-08-11 | 1 | -1/+1 |
| | |||||
* | move cythonize script to Cython.Build.Cythonize to make it generally ↵ | Stefan Behnel | 2013-08-11 | 1 | -0/+185 |
available and keep bin/cythonize only as a pure start script |