Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update astroid to version 2.12.1 #25

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 12 additions & 9 deletions recipe/meta.yaml
@@ -1,53 +1,56 @@
{% set version = "2.9.0" %}
{% set version = "2.12.1" %}
varlackc marked this conversation as resolved.
Show resolved Hide resolved

package:
name: astroid
version: {{ version }}

source:
url: https://pypi.io/packages/source/a/astroid/astroid-{{ version }}.tar.gz
sha256: 5939cf55de24b92bda00345d4d0659d01b3c7dafb5055165c330bc7c568ba273
sha256: 6780c1e5581abe2af53417b51120faac23f332e0868e88a3a4f5e895d75ec5f9

build:
number: 0
# trigger: 1
skip: true # [py<36]
skip: true # [py<37]
script: {{ PYTHON }} -m pip install . --no-deps -vv

requirements:
host:
- python
- pip
- pytest-runner
- setuptools >=20.0
- setuptools
- wheel
run:
- python
- setuptools >=20.0
- lazy-object-proxy >=1.4.0
- wrapt >=1.11,<1.14
- wrapt >=1.11,<2
- typed-ast >=1.4.0,<2.0 # [py<38]
- typing-extensions >=3.10 # [py<310]
run_constrained:
- python >=3.7.2

varlackc marked this conversation as resolved.
Show resolved Hide resolved
test:
requires:
- pip
imports:
- astroid
- astroid.brain
- astroid.interpreter
- astroid.nodes
- astroid.modutils
commands:
- python -m pip check

about:
home: https://www.astroid.org/
home: https://github.com/PyCQA/astroid
license: LGPL-2.1-or-later
license_family: LGPL
license_file: LICENSE
summary: A abstract syntax tree for Python with inference support.
description: |
Astroid provide a common base representation of python source code for
projects such as pychecker, pyreverse, pylint.
doc_url: http://astroid.readthedocs.io/en/latest/?badge=latest
doc_url: https://pylint.pycqa.org/projects/astroid/en/latest/?badge=latest
doc_source_url: https://github.com/PyCQA/astroid/blob/master/doc/index.rst
dev_url: https://github.com/PyCQA/astroid

Expand Down