Hi,
I'm received an error when trying to install asteroid.
Collecting astroid==2.1.0 (from -r requirements.txt (line 1))
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f0c03854b00>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/astroid/
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=…
[View More]None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f0c03854390>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/astroid/
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f0c038542b0>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/astroid/
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f0c038548d0>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/astroid/
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7f0c03854908>: Failed to establish a new connection: [Errno -3] Try again',)': /simple/astroid/
Could not find a version that satisfies the requirement astroid==2.1.0 (from -r requirements.txt (line 1)) (from versions: )
No matching distribution found for astroid==2.1.0 (from -r requirements.txt (line 1))
Am I doing something wrong?
Thanks,
Reid Karabush
[Decision Systems Incorporated]<http://www.decisionsystems.com/>
5 Revere Drive, Suite 200
Northbrook, Illinois 60062, USA
office: 1.847.433.0876 ext. 101
mobile: 1.847.722.7870
www.decisionsystems.com<http://www.decisionsystems.com/>
[view_my_linkedin_profile]<https://www.linkedin.com/in/reidkarabush>
[View Less]
Hello,
This is a formal request to add modernize, a tool for modernizing code for hybrid codebases, to the PyCQA.
Myself and the other maintainers have agreed that it would better be suited under the PyCQA since this is a tool used
to create more quality code.
The code can be found on GitHub here:
https://github.com/python-modernize/python-modernize
Let me know if you have any questions. Thanks!
Hello,
In Pylint's documentation, it is stated that
It is also possible to analyze Python files, with a few restrictions.
The thing to keep in mind is that Pylint will try to convert the file
name to a module name, and only be able to process the file if it
succeeds.
(https://pylint.readthedocs.io/en/latest/user_guide/run.html#command-line-op…)
However, I can do this:
$ echo "import this" > foo-bar.py
$ pylint foo-bar.py
************* Module …
[View More]foo-bar
foo-bar.py:1:0: C0103: Module name "foo-bar" doesn't conform to
snake_case naming style (invalid-name)
foo-bar.py:1:0: C0114: Missing module docstring (missing-module-docstring)
foo-bar.py:1:0: W0611: Unused import this (unused-import)
----------------------------------------------------------------------
Your code has been rated at -20.00/10 (previous run: -20.00/10, +0.00)
which I expected not work given that dashes are not permitted in
Python module names.
So, does the documentation need updating, and if not, how should I
interpret it?
Best regards,
Jean Abou Samra
[View Less]
Dear PyCQA members,
I am formally requesting that isort be added to PyCQA.
I've contemplated the steps needed to help ensure the vitality of the isort
project over the long term
during the last few years. And, I feel, moving under the umbrella of PyCQA
would be a significant step in the right direction, both for isort and the
broader community.
The repository for the project currently lives here:
https://github.com/timothycrosley/isort
I'm happy to answer any questions, and appreciate the consideration,
~Timothy
Hi,
I thought that I'd ask here before opening an issue. I'm seeing intermittent warnings on the same code.
For this line:
doc.DeveloperName = dev_type # pylint: disable=invalid-name
I get this warning:
file.py:50: [C0103(invalid-name), TestSomething._create] Attribute name "DeveloperName" doesn't conform to '[a-z_][a-z0-9_]{2,50}$' pattern
The environment is sterile; this happens during our build process which doesn't use artifacts from intermediate stages. The code is …
[View More]retrieved with "git clone" followed by installing fixed pip packages and running pylint.
Versions:
Python: python:3.6.11-stretch (docker image)
astroid==2.4.2
pylint==2.5.3
Any ideas on how to prevent this? Right now I only have the workaround of add the extra strings to "good-names" in pylintrc.
Thanks in advance!
- David
[View Less]