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 1 commit
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
15 changes: 7 additions & 8 deletions recipe/meta.yaml
@@ -1,17 +1,16 @@
{% 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:
Expand All @@ -20,12 +19,12 @@ requirements:
- pip
- pytest-runner
- setuptools >=20.0
varlackc marked this conversation as resolved.
Show resolved Hide resolved
- wheel
- wheel !=0.37.1
varlackc marked this conversation as resolved.
Show resolved Hide resolved
run:
- python
- setuptools >=20.0
- setuptools !=62.6
varlackc marked this conversation as resolved.
Show resolved Hide resolved
- 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]

varlackc marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -47,7 +46,7 @@ about:
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