summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add a function to get the next versions from the versionPierre Sassoulas2021-06-292-16/+62
|
* Create a check function in bumb changelog scriptPierre Sassoulas2021-06-292-31/+51
|
* Add logging in the bump version scriptPierre Sassoulas2021-06-292-6/+26
|
* Better check for the TBA in the ChangelogPierre Sassoulas2021-06-292-13/+44
|
* Better get next version according to version typePierre Sassoulas2021-06-292-12/+35
|
* Permit to test the version in script/test_bump_changelog.pyPierre Sassoulas2021-06-291-3/+10
|
* Refactor the get_next_version functionPierre Sassoulas2021-06-292-9/+20
|
* Refactor of script/bump_changelog.py for easier testsPierre Sassoulas2021-06-292-19/+14
|
* [pre-commit.ci] pre-commit autoupdate (#1077)pre-commit-ci[bot]2021-06-282-3/+3
| | | | | | | | | | | | * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/pre-commit/mirrors-mypy: v0.902 → v0.910](https://github.com/pre-commit/mirrors-mypy/compare/v0.902...v0.910) - [github.com/pre-commit/mirrors-prettier: v2.3.1 → v2.3.2](https://github.com/pre-commit/mirrors-prettier/compare/v2.3.1...v2.3.2) * Update requirements_test_pre_commit.txt Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
* Create a constant for BUILTINS in astroid.constantsPierre Sassoulas2021-06-2610-30/+12
|
* Comments should start with only one '#'Pierre Sassoulas2021-06-262-2/+2
|
* Add dict as base for TypedDict (#1074)Marc Mueller2021-06-253-0/+6
|
* Add code analysis provided by GitHub (#1071)Pierre Sassoulas2021-06-221-0/+71
| | | | | | * Add code analysis provided by GitHub Add some tools provided by github in settings/Security & Analysis.
* Upgrade the version to 2.7.0-dev0 following 2.6.0 releasePierre Sassoulas2021-06-223-21/+13
|
* Bump astroid to 2.6.0, update changelogv2.6.0Pierre Sassoulas2021-06-2215-13/+31
|
* Update requirements_test.txtPierre Sassoulas2021-06-211-1/+1
| | | Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
* Add additional typing dependencies in requirementsPierre Sassoulas2021-06-212-0/+5
| | | | See: https://github.com/PyCQA/astroid/pull/1069#issuecomment-865216661
* Rename non obvious PY3X constant to PY3X_PLUSPierre Sassoulas2021-06-2116-65/+65
| | | | See https://github.com/PyCQA/astroid/pull/1069\#issuecomment-865206120
* Add additional_dependencies for existing package stubsPierre Sassoulas2021-06-212-13/+8
| | | | See https://github.com/PyCQA/astroid/pull/1068/files\#r655561356
* Add a disable method might be static in a VisitorPierre Sassoulas2021-06-211-0/+2
|
* Merge pull request #1062 from cdce8p/misc-typing-improvementsMarc Mueller2021-06-211-458/+761
|\ | | | | Misc typing improvements
| * Add sys.version_info guard to rebuilderMarc Mueller2021-06-211-415/+730
| |
| * Update visit_assignname and visit_decorators to return NoneMarc Mueller2021-06-211-43/+31
| |
| * Misc improvements to fix typing issuesMarc Mueller2021-06-211-16/+16
| |
* | Add mypy configuration but excluding all files in pre-commitPierre Sassoulas2021-06-213-1/+29
| |
* | Add mypy configuration for stub that do not existsPierre Sassoulas2021-06-211-0/+24
| |
* | Upgrade changelog following change in API for NodeNgPierre Sassoulas2021-06-211-0/+3
| |
* | Crate a ``__all__`` in ``astroid.nodes``Pierre Sassoulas2021-06-211-0/+3
| | | | | | | | See https://github.com/PyCQA/astroid/pull/1067#discussion_r655428869
* | Add NodeNg in the API, it can be used for typingPierre Sassoulas2021-06-211-0/+2
| | | | | | | | See https://github.com/PyCQA/astroid/pull/1057\#discussion_r654832498
* | Sort astroid.nodes.ALL_NODE_CLASSES alphabeticallyPierre Sassoulas2021-06-211-13/+13
|/
* Remove default init values Arguments + fix raw_building (#1065)Marc Mueller2021-06-213-24/+38
| | | | | | * Arguments - remove default init values * Fix raw_building.build_function * Use Arguments.postinit * Add kwonlyargs
* Small fixes following pep8 changesPierre Sassoulas2021-06-212-3/+3
| | | | | Re-add 'ex' in good name Fix a typo rrue = true
* Rename an exception to the standard name used elsewherePierre Sassoulas2021-06-201-4/+4
|
* Add a todo to remove Load, Del, StorePierre Sassoulas2021-06-201-3/+4
|
* Fix pep8 in unittest test function's namesPierre Sassoulas2021-06-206-32/+32
|
* Type annotations for nodes 11 (#1063)Marc Mueller2021-06-201-128/+75
| | | | | * Arguments * Remove duplicate type annotation for Match nodes * Small changes
* Type annotations for nodes 10 (#1061)Marc Mueller2021-06-191-73/+130
| | | | * Decorators, TryExcept, TryFinally, NamedExpr, EvaluatedObject * Remove additional default values from Match nodes
* Simplification because AstroidManager is a singleton/borgPierre Sassoulas2021-06-1958-179/+206
|
* Create a file for the global manager defined in astroid.__init__.pyPierre Sassoulas2021-06-1943-45/+69
|
* Type annotations for nodes 09 (#1056)Marc Mueller2021-06-191-61/+58
| | | * AssignName, DelName, Name, AssignAttr, DelAtr
* Type annotations for nodes 08Marc Mueller2021-06-191-96/+168
| | | | * Tuple, UnaryOp, While, With, Yield, FormattedValue, JoinedStr
* Add context type hintsMarc Mueller2021-06-191-21/+10
|
* Import directly from modules in astroid.scoped_nodesPierre Sassoulas2021-06-191-5/+6
|
* Import directly from modules in astroid.rebuilderPierre Sassoulas2021-06-191-7/+5
|
* Import directly from modules in astroid.brain.*Pierre Sassoulas2021-06-1932-230/+259
|
* Import directly from modules in astroid.managerPierre Sassoulas2021-06-192-10/+22
|
* Remove the __all__ that aren't necessaryPierre Sassoulas2021-06-193-87/+2
|
* Remove useless APi for astroid/brainPierre Sassoulas2021-06-191-3/+0
|
* Skip ordering for the version in astroid for easier packagingPierre Sassoulas2021-06-191-1/+8
|
* Remove use of os in favor of pathlib.Path in astroid/__init__.pyPierre Sassoulas2021-06-191-5/+5
|