[Python-modules-commits] [python-cssselect] 01/03: Import python-cssselect_1.0.1.orig.tar.gz

Wolfgang Borgert debacle at moszumanska.debian.org
Sun Jan 22 12:35:34 UTC 2017


This is an automated email from the git hooks/post-receive script.

debacle pushed a commit to branch master
in repository python-cssselect.

commit c1bd4abdcccf8291b4fad5574a40df6379cee66a
Author: W. Martin Borgert <debacle at debian.org>
Date:   Sun Jan 22 12:18:31 2017 +0000

    Import python-cssselect_1.0.1.orig.tar.gz
---
 .bumpversion.cfg      |  2 +-
 .travis.yml           | 27 +++++++++++++++++----------
 CHANGES               |  8 ++++++++
 README.rst            |  4 ++--
 cssselect/__init__.py |  2 +-
 docs/conf.py          |  2 +-
 setup.cfg             |  2 +-
 setup.py              |  4 ++--
 8 files changed, 33 insertions(+), 18 deletions(-)

diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 426ea28..92c7bcb 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 1.0.0
+current_version = 1.0.1
 commit = True
 tag = True
 
diff --git a/.travis.yml b/.travis.yml
index a89d5b3..5ddb1fd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,22 +1,29 @@
 language: python
-
 python:
-  - "2.6"
-  - "2.7"
-  - "3.2"
-  - "3.3"
-  - "3.4"
-  - "3.5"
+  - '2.6'
+  - '2.7'
+  - '3.3'
+  - '3.4'
+  - '3.5'
+  - '3.6'
 
 install:
   - pip install lxml -e .
   - 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:
   py.test --cov-report term --cov=cssselect
 
 after_success:
   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'"
diff --git a/CHANGES b/CHANGES
index 94abe77..92b0371 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,14 @@
 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
 -------------
 
diff --git a/README.rst b/README.rst
index 155149d..587c2d7 100644
--- a/README.rst
+++ b/README.rst
@@ -17,8 +17,8 @@ extracted as a stand-alone project.
 Quick facts:
 
 * Free software: BSD licensed
-* Compatible with Python 2.6+ and 3.2+
-* Latest documentation `on python.org <https://pythonhosted.org/cssselect/>`_
+* Compatible with Python 2.6+ and 3.3+
+* Latest documentation `on Read the Docs <https://cssselect.readthedocs.io/>`_
 * Source, issues and pull requests `on Github
   <https://github.com/scrapy/cssselect>`_
 * Releases `on PyPI <http://pypi.python.org/pypi/cssselect>`_
diff --git a/cssselect/__init__.py b/cssselect/__init__.py
index f46a0e4..3b06261 100644
--- a/cssselect/__init__.py
+++ b/cssselect/__init__.py
@@ -18,5 +18,5 @@ from cssselect.parser import (parse, Selector, FunctionalPseudoElement,
 from cssselect.xpath import GenericTranslator, HTMLTranslator, ExpressionError
 
 
-VERSION = '1.0.0'
+VERSION = '1.0.1'
 __version__ = VERSION
diff --git a/docs/conf.py b/docs/conf.py
index b2612d0..aa897ef 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -43,7 +43,7 @@ master_doc = 'index'
 
 # General information about the project.
 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
 # |version| and |release|, also used in various other places throughout the
diff --git a/setup.cfg b/setup.cfg
index 270daee..b8c93b1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,7 +6,7 @@ build-dir  = docs/_build
 [upload_sphinx] # Sphinx-PyPI-upload
 upload-dir = docs/_build/html
 
-[pytest]
+[tool:pytest]
 testpaths = tests
 
 [bdist_wheel]
diff --git a/setup.py b/setup.py
index b4d0941..199ffc7 100644
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,7 @@ setup(
     description=
         'cssselect parses CSS3 Selectors and translates them to XPath 1.0',
     long_description=README,
-    url='https://pythonhosted.org/cssselect/',
+    url='https://github.com/scrapy/cssselect',
     license='BSD',
     packages=['cssselect'],
     classifiers=[
@@ -37,10 +37,10 @@ setup(
         'Programming Language :: Python :: 2.6',
         'Programming Language :: Python :: 2.7',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.2',
         'Programming Language :: Python :: 3.3',
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
+        'Programming Language :: Python :: 3.6',
     ],
     **extra_kwargs
 )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-cssselect.git



More information about the Python-modules-commits mailing list