From 25d626e92f2c32f8961a5811d27c3a9b2176b936 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Tue, 27 Oct 2020 14:01:40 -0400 Subject: [PATCH 1/3] Migrate from travis-ci.org to travis-ci.com --- README.rst | 4 ++-- docs/index.rst | 4 ++-- docs/main/changelog.rst | 6 +++++- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index cd22aac0..8ddf546a 100644 --- a/README.rst +++ b/README.rst @@ -35,8 +35,8 @@ :target: https://pypi.org/project/dependency-injector/ :alt: Wheel -.. image:: https://travis-ci.org/ets-labs/python-dependency-injector.svg?branch=master - :target: https://travis-ci.org/ets-labs/python-dependency-injector +.. image:: https://api.travis-ci.com/ets-labs/python-dependency-injector.svg?branch=master + :target: https://travis-ci.com/github/ets-labs/python-dependency-injector :alt: Build Status .. image:: https://readthedocs.org/projects/python-dependency-injector/badge/?version=latest diff --git a/docs/index.rst b/docs/index.rst index aeb81224..f4f01211 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -50,8 +50,8 @@ Dependency Injector --- Dependency injection framework for Python :target: https://pypi.org/project/dependency-injector/ :alt: Wheel -.. image:: https://api.travis-ci.org/ets-labs/python-dependency-injector.svg?branch=master - :target: https://travis-ci.org/ets-labs/python-dependency-injector +.. image:: https://api.travis-ci.com/ets-labs/python-dependency-injector.svg?branch=master + :target: https://travis-ci.com/github/ets-labs/python-dependency-injector :alt: Build Status .. image:: https://readthedocs.org/projects/python-dependency-injector/badge/?version=latest diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index e0152302..8eab411e 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,9 +7,13 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ +Develop +----- +- Migrate from ``travis-ci.org`` to ``travis-ci.com`` to fix build issues. + 4.1.2 ----- -Bump version of ``cibuildwheel>=1.5.1`` to resolve Windows build problem. +- Bump version of ``cibuildwheel>=1.5.1`` to resolve Windows build problem. 4.1.1 ----- From 3b4fae8dca005eb7dbf0f437e7411913c3f38d0b Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Tue, 27 Oct 2020 14:04:52 -0400 Subject: [PATCH 2/3] Add installation of certifi for windows ci builds --- .travis.yml | 7 +++++-- docs/main/changelog.rst | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 419f35e0..11c97045 100644 --- a/.travis.yml +++ b/.travis.yml @@ -88,9 +88,12 @@ jobs: language: shell env: TWINE_USERNAME=__token__ before_install: - - choco install python --version 3.8.0 + - choco install python --version 3.8.6 - export PATH="/c/Python38:/c/Python38/Scripts:$PATH" - install: python -m pip install cibuildwheel>=1.5.1 + install: + - python3 -m pip install certifi cibuildwheel>=1.5.1 + - export SSL_CERT_FILE=`python3 -c "import certifi;print(certifi.where())"` + - echo $SSL_CERT_FILE script: python -m cibuildwheel --output-dir wheelhouse after_success: - python -m pip install twine diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 8eab411e..b42b9e95 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -10,6 +10,7 @@ follows `Semantic versioning`_ Develop ----- - Migrate from ``travis-ci.org`` to ``travis-ci.com`` to fix build issues. +- Add explicit installation of ``certifi`` for Windows build to resolve build problems. 4.1.2 ----- From 969849e4da4d2e20311b4699a9cce8e2dfab3bc6 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Tue, 27 Oct 2020 14:05:16 -0400 Subject: [PATCH 3/3] Bump version to 4.1.3 --- docs/main/changelog.rst | 2 +- src/dependency_injector/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index b42b9e95..2192c436 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,7 +7,7 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ -Develop +4.1.3 ----- - Migrate from ``travis-ci.org`` to ``travis-ci.com`` to fix build issues. - Add explicit installation of ``certifi`` for Windows build to resolve build problems. diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index fc045f87..23301dbc 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Top-level package.""" -__version__ = '4.1.2' +__version__ = '4.1.3' """Version number. :type: str