summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* 1.2 version on round_trip_output (Yes/No/On/Off non-quoted)0.11.8Anthon van der Neut2016-04-071-1/+4
|
* corrected parser_.py nameAnthon van der Neut2016-03-271-5/+5
|
* trigger read-the-docs0.11.6Anthon van der Neut2016-02-291-0/+4
|
* - make sure there is a space before # if scalar pushes (through indent)Anthon van der Neut2016-02-161-8/+6
| | | | | a comment from its original column - flake 8
* fix wheel at 0.24 for now0.10.19Anthon van der Neut2016-01-311-17/+50
|
* util versionsAnthon van der Neut2016-01-301-0/+8
|
* explicit BinaryDistribution classAnthon van der Neut2016-01-301-0/+6
|
* testAnthon van der Neut2016-01-301-0/+1
|
* Test and fix for #22, collections.OrderedDict could not0.10.16Anthon van der Neut2016-01-221-17/+20
| | | | be represented/dumped
* Jython compatibilityAnthon van der Neut2015-10-081-6/+9
|
* Fix for issue 13, not installing on JenkinsAnthon van der Neut2015-09-171-8/+23
| | | | | The test compile in setup.py/__init__.py would still rely on libyaml to be installed.
* include libyamlAnthon van der Neut2015-09-141-52/+123
|
* checking cythonAnthon van der Neut2015-09-121-23/+80
|
* splitAnthon van der Neut2015-08-281-41/+169
|
* - main problem in moving stuff from yaml/py to yaml was thatAnthon van der Neut2015-08-281-147/+308
| | | | | | parser.py clashes with built-in parser module (CPython, C-module) which is inlucded from pkg_resources/__init__.py - no C compile yet
* removed utilityAnthon van der Neut2015-08-271-3/+3
|
* intermediate version 0.10.6 fixed on ruamel.base 0.3 and ruamel.std.argparse ↵Anthon van der Neut2015-08-271-2/+2
| | | | 0.5.2
* - remove tmpdir printAnthon van der Neut2015-06-051-1/+0
| | | | | - update for so-30328549-yaml-preprocessor-macro-processor/ so that you can have construct_scalar return a non string
* keep start and end sequence when doing 'yaml rt'Anthon van der Neut2015-06-051-29/+35
|
* initial html conversionAnthon van der Neut2015-06-021-0/+1
|
* make purity of wheel depend on --universalAnthon van der Neut2015-05-281-1/+2
|
* - tests run on windows 2.6. and 2.7 (3.3/3.4 have someinstall problems)Anthon van der Neut2015-05-281-1/+6
| | | | - generate .whl for various windows version/platform combination (universal)
* flow and non-flow style for yaml jsonAnthon van der Neut2015-05-131-1/+1
|
* updated short descriptionAnthon van der Neut2015-03-271-2/+2
|
* 0.7Anthon van der Neut2015-03-261-1/+2
|
* remove assert dependency requiring the yaml directory to be under ↵Anthon van der Neut2015-03-261-4/+0
| | | | site-packages/ruamel
* now installs and tests for pypy (by testing in setup.py and notAnthon van der Neut2015-03-181-1/+5
| | | | depending on ruamel.ordereddict if not CPython 2.x series)
* scalarstring addedAnthon van der Neut2015-03-101-5/+4
|
* check using distribute compilerAnthon van der Neut2015-03-101-7/+30
|
* check if libyaml is available before trying to compile extensionAnthon van der Neut2015-03-091-11/+40
|
* - add dependency on ruamel.baseAnthon van der Neut2015-01-141-21/+2
| | | | - remove creation of __init__.py
* reenable _yaml.so generationAnthon van der Neut2014-11-251-1/+0
|
* - INI conversion in yamlAnthon van der Neut2014-11-241-1/+1
| | | | | - (hidden) test in yaml for debugging with auto command - fix for missing comment in middel of simple map + test
* - add ext/_yaml.c etc to the source treeAnthon van der Neut2014-11-231-1/+19
| | | | - tests for yaml to work on 2.6/3.3/3.4
* - change install so that you can include ruamel.yaml instead of ruamel.yaml.pyAnthon van der Neut2014-11-231-9/+11
| | | | - add "yaml" utility with initial subcommands (test rt, from json)
* - merge py2 and py3 code basesAnthon van der Neut2014-11-221-0/+157
- remove support for 2.5/3.0/3.1/3.2 (this merge relies on u"" as available in 3.3 and . imports not available in 2.5) - tox.ini for 2.7/3.4/2.6/3.3 - remove lib3/ and tests/lib3 directories and content - commit - correct --verbose for test application - DATA=changed to be relative to __file__ of code - DATA using os.sep - remove os.path from imports as os is already imported - have test_yaml.py exit with value 0 on success, 1 on failures, 2 on error - added support for octal integers starting with '0o' keep support for 01234 as well as 0o1234 - commit - added test_roundtrip_data: requirest a .data file and .roundtrip (empty), yaml_load .data and compare dump against original. - fix grammar as per David Pursehouse: https://bitbucket.org/xi/pyyaml/pull-request/5/fix-grammar-in-error-messages/diff - http://www.json.org/ extra escaped char \/ add .skip-ext as libyaml is not updated - David Fraser: Extract a method to represent keys in mappings, so that a subclass can choose not to quote them, used in repesent_mapping https://bitbucket.org/davidfraser/pyyaml/ - add CommentToken and percolate through parser and composer and constructor - add Comments to wrapped mapping and sequence constructs (not to scalars) - generate YAML with comments - initial README