summaryrefslogtreecommitdiff
path: root/isort
Commit message (Collapse)AuthorAgeFilesLines
* Hot-fix Release 4.3.18Timothy Crosley2019-05-011-1/+1
|
* Update format.pyTimothy Edmund Crosley2019-04-301-2/+2
|
* add resolve() helper to address the differences between pathlib implementationsMaxim Kurnikov2019-04-291-2/+9
|
* move to pathlibMaxim Kurnikov2019-04-284-43/+66
|
* add strict_optional = True for some filesMaxim Kurnikov2019-04-264-4/+4
|
* extract checks logic out of _SortImportsMaxim Kurnikov2019-04-262-51/+44
|
* extract some more methods into separate fileMaxim Kurnikov2019-04-262-53/+62
|
* extract everything file related to upper levelMaxim Kurnikov2019-04-262-101/+83
|
* extract show_diff, prompt_userMaxim Kurnikov2019-04-262-22/+44
|
* extract some static methodsMaxim Kurnikov2019-04-262-43/+43
|
* extract file contents read into separate methodMaxim Kurnikov2019-04-251-40/+46
|
* extract reading configurationMaxim Kurnikov2019-04-252-18/+35
|
* sort importsMaxim Kurnikov2019-04-252-2/+2
|
* make compat layer to preserve public apiMaxim Kurnikov2019-04-255-4/+49
|
* enable tests typecheckingMaxim Kurnikov2019-04-251-1/+1
|
* Use pip-api instead of importing pipDustin Ingram2019-04-181-10/+4
|
* Fix list passed from toml settingsStephen Brown II2019-04-151-0/+2
|
* Release version 4.3.17Timothy Crosley2019-04-071-1/+1
|
* Fix issue #916feature/fix-issue-916Timothy Crosley2019-04-041-1/+1
|
* Merge pull request #913 from timothycrosley/feature/fix-issue-902Timothy Edmund Crosley2019-03-241-4/+4
| | | Feature/fix issue 902
* Merge pull request #911 from timothycrosley/feature/fix-issue-909Timothy Edmund Crosley2019-03-241-1/+2
| | | | Feature/fix issue 909
* Fix issue #778, deprecating Python3.4 support - starting with removal of userfeature/fix-issue-778Timothy Crosley2019-03-111-1/+1
|
* Bump versionTimothy Crosley2019-03-101-1/+1
|
* Merge pull request #898 from timothycrosley/feature/fix-issue-811Timothy Edmund Crosley2019-03-101-2/+2
| | | Fix handling of whitespace character
* Merge pull request #897 from timothycrosley/feature/better-help-docTimothy Edmund Crosley2019-03-101-1/+3
| | | Feature/better help doc
* Bump versionTimothy Crosley2019-03-091-1/+1
|
* Fix issue with */ style glob testsTimothy Crosley2019-03-091-1/+1
|
* Fix issue #889: Isort should not add blank lines to beginning of fileTimothy Crosley2019-03-081-1/+1
|
* Fix formattingTimothy Crosley2019-03-081-1/+1
|
* Fix issue #890Timothy Crosley2019-03-083-2/+6
|
* Fix syntax errorTimothy Crosley2019-03-081-1/+1
|
* Merge branch 'develop' of https://github.com/timothycrosley/isort into developTimothy Crosley2019-03-074-10/+28
|\
| * Implement conda environment supportTimothy Crosley2019-03-062-7/+23
| |
| * Merge pull request #884 from emilmelnikov/patch-1Timothy Edmund Crosley2019-03-061-1/+2
| |\ | | | | | | Do not print file names when in the quiet mode
| | * Do not print file names when in the quiet modeEmil Melnikov2019-03-061-1/+2
| | | | | | | | | | | | | | | | | | The current help for the `--quiet` option says that it enables "extra quiet output, only errors are outputted". However, isort still prints `Fixing spam/eggs.py` messages to stdout.
| * | Merge in hot fix releaseTimothy Crosley2019-03-062-2/+3
| |/
* | Fix logic error in skip checkTimothy Crosley2019-03-071-1/+1
| |
* | Fix file skipping in particular with globsTimothy Crosley2019-03-073-12/+20
|/
* Merge in fallback encoding supportTimothy Crosley2019-03-061-1/+1
|
* Allow fallback to OS encodingTimothy Crosley2019-03-061-6/+18
|
* Fix open usageTimothy Crosley2019-03-061-1/+1
|
* Update to include binary/pex improvementTimothy Crosley2019-03-062-4/+15
|
* Merge in improvement for safe skipsTimothy Edmund Crosley2019-03-063-11/+14
|
* Merge pull request #875 from Tenzer/toml-integer-valuesTimothy Edmund Crosley2019-03-041-1/+1
|\ | | | | Support integer values for `multi_line_output` from TOML files
| * Support integer values for `multi_line_output` from TOML filesJeppe Fihl-Pearson2019-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | TOML is a typed file format so if you had `multi_line_output = 3` specified in your `pyproject.toml` file you would get an error like this after the changes in https://github.com/timothycrosley/isort/pull/860 were merged in: > TypeError: getattr(): attribute name must be string This change makes sure the attribute name is a string when passed to `getattr()` to avoid errors like this going forward.
* | Merge branch 'develop' of https://github.com/timothycrosley/isort into developTimothy Crosley2019-03-045-50/+61
|\ \ | |/
| * Merge pull request #850 from mkurnikov/split-sort-imports-cherry-pickedTimothy Edmund Crosley2019-03-034-48/+59
| |\ | | | | | | Split SortImports class into smaller classes, part 1
| | * rename original_length -> original_num_of_linesMaxim Kurnikov2019-02-262-5/+5
| | |
| | * extract infer_line_separator methodMaxim Kurnikov2019-02-262-6/+10
| | |
| | * rename should_skip -> file_should_be_skippedMaxim Kurnikov2019-02-263-6/+6
| | |