Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pycqa/pylint
1 result
Show changes
Loading
Loading
@@ -57,9 +57,10 @@ Pre-release
https://github.com/PyCQA/pylint
 
 
Release by running:
Release by running the following:
$ git clean -fd && find . -name '*.pyc' -delete
$ python setup.py sdist --formats=gztar bdist_wheel
$ twine upload dist/*
$ python setup.py register sdist --formats=gztar bdist_wheel upload
to release a new version to PyPI.
Loading
Loading
@@ -18,7 +18,7 @@ from setuptools import __version__ as setuptools_version
 
modname = distname = 'pylint'
 
numversion = (1, 7, 3)
numversion = (1, 7, 4)
version = '.'.join([str(num) for num in numversion])
 
install_requires = [
Loading
Loading