Skip to content
Snippets Groups Projects
Commit c1bd4abd authored by Martin's avatar Martin
Browse files

Import python-cssselect_1.0.1.orig.tar.gz

parent 80923de7
No related branches found
No related tags found
No related merge requests found
[bumpversion] [bumpversion]
current_version = 1.0.0 current_version = 1.0.1
commit = True commit = True
tag = True tag = True
......
language: python language: python
python: python:
- "2.6" - '2.6'
- "2.7" - '2.7'
- "3.2" - '3.3'
- "3.3" - '3.4'
- "3.4" - '3.5'
- "3.5" - '3.6'
install: install:
- pip install lxml -e . - pip install lxml -e .
- pip install -U codecov pytest-cov - pip install -U codecov pytest-cov
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]];
then pip uninstall -y coverage pytest && pip install "coverage<4" && pip install "pytest<3";
fi
script: script:
py.test --cov-report term --cov=cssselect py.test --cov-report term --cov=cssselect
after_success: after_success:
codecov codecov
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: redapple
password:
secure: T1PBD+ocIGwHMbBHPqzu7UZxpkB0w98KtEIkNzLXNQcF7JpjugZNwz4xX2xVhi8yvUQ257VtLSKpIOT2FWxrfLrgTZKbTd6Q7V5Lf3HKzLomOKUKMAd54gsOuismE27CT/SHbexskACgwVwkyG9Y3dlG6m/ZBgqoPAGaJrScjEU=
on:
tags: true
repo: scrapy/cssselect
condition: "$TRAVIS_PYTHON_VERSION == '3.6'"
Changelog Changelog
========= =========
Version 1.0.1
-------------
Released on 2017-01-10.
* Add support for Python 3.6.
* Documentation hosted `on Read the Docs <https://cssselect.readthedocs.io/>`_
Version 1.0.0 Version 1.0.0
------------- -------------
......
...@@ -17,8 +17,8 @@ extracted as a stand-alone project. ...@@ -17,8 +17,8 @@ extracted as a stand-alone project.
Quick facts: Quick facts:
* Free software: BSD licensed * Free software: BSD licensed
* Compatible with Python 2.6+ and 3.2+ * Compatible with Python 2.6+ and 3.3+
* Latest documentation `on python.org <https://pythonhosted.org/cssselect/>`_ * Latest documentation `on Read the Docs <https://cssselect.readthedocs.io/>`_
* Source, issues and pull requests `on Github * Source, issues and pull requests `on Github
<https://github.com/scrapy/cssselect>`_ <https://github.com/scrapy/cssselect>`_
* Releases `on PyPI <http://pypi.python.org/pypi/cssselect>`_ * Releases `on PyPI <http://pypi.python.org/pypi/cssselect>`_
......
...@@ -18,5 +18,5 @@ from cssselect.parser import (parse, Selector, FunctionalPseudoElement, ...@@ -18,5 +18,5 @@ from cssselect.parser import (parse, Selector, FunctionalPseudoElement,
from cssselect.xpath import GenericTranslator, HTMLTranslator, ExpressionError from cssselect.xpath import GenericTranslator, HTMLTranslator, ExpressionError
VERSION = '1.0.0' VERSION = '1.0.1'
__version__ = VERSION __version__ = VERSION
...@@ -43,7 +43,7 @@ master_doc = 'index' ...@@ -43,7 +43,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = 'cssselect' project = 'cssselect'
copyright = '2012, Simon Sapin' copyright = '2012-2017, Simon Sapin, Scrapy developers'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
......
...@@ -6,7 +6,7 @@ build-dir = docs/_build ...@@ -6,7 +6,7 @@ build-dir = docs/_build
[upload_sphinx] # Sphinx-PyPI-upload [upload_sphinx] # Sphinx-PyPI-upload
upload-dir = docs/_build/html upload-dir = docs/_build/html
[pytest] [tool:pytest]
testpaths = tests testpaths = tests
[bdist_wheel] [bdist_wheel]
......
...@@ -26,7 +26,7 @@ setup( ...@@ -26,7 +26,7 @@ setup(
description= description=
'cssselect parses CSS3 Selectors and translates them to XPath 1.0', 'cssselect parses CSS3 Selectors and translates them to XPath 1.0',
long_description=README, long_description=README,
url='https://pythonhosted.org/cssselect/', url='https://github.com/scrapy/cssselect',
license='BSD', license='BSD',
packages=['cssselect'], packages=['cssselect'],
classifiers=[ classifiers=[
...@@ -37,10 +37,10 @@ setup( ...@@ -37,10 +37,10 @@ setup(
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
], ],
**extra_kwargs **extra_kwargs
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment