You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2022/12/05 19:40:42 UTC

[libcloud] branch trunk updated (411a2eae9 -> 25a9fe319)

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git


    from 411a2eae9 Try fixing CI.
     new 972260a44 Try running pyjion tests under ubuntu 20.04.
     new 25a9fe319 Upgrade tox and cryptography dev / testing dependency.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/integration-tests.yml     |  2 +-
 .github/workflows/main.yml                  | 15 ++++++++-------
 .github/workflows/publish_pricing_to_s3.yml |  2 +-
 contrib/Dockerfile                          |  2 +-
 requirements-tests.txt                      |  2 +-
 5 files changed, 12 insertions(+), 11 deletions(-)


[libcloud] 02/02: Upgrade tox and cryptography dev / testing dependency.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 25a9fe3192fd5361e7583cff8eedb9cc493f83fb
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Dec 5 20:39:22 2022 +0100

    Upgrade tox and cryptography dev / testing dependency.
---
 .github/workflows/integration-tests.yml     |  2 +-
 .github/workflows/main.yml                  | 12 ++++++------
 .github/workflows/publish_pricing_to_s3.yml |  2 +-
 contrib/Dockerfile                          |  2 +-
 requirements-tests.txt                      |  2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml
index 00cd77dbf..cf7248443 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -76,7 +76,7 @@ jobs:
 
       - name: Install Python Dependencies
         run: |
-          pip install "tox==3.25.1"
+          pip install "tox==3.27.1"
 
       - name: Run tox target
         run: |
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index faffdc63b..9a77e609c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -117,7 +117,7 @@ jobs:
 
       - name: Install Python Dependencies
         run: |
-          pip install "tox==3.25.1"
+          pip install "tox==3.27.1"
 
       - name: Run unit tests tox target
         run: |
@@ -164,7 +164,7 @@ jobs:
 
       - name: Install Python Dependencies
         run: |
-          pip install "tox==3.25.1"
+          pip install "tox==3.27.1"
 
       - name: Run Checks
         run: |
@@ -206,7 +206,7 @@ jobs:
 
       - name: Install Python Dependencies
         run: |
-          pip install "tox==3.25.1"
+          pip install "tox==3.27.1"
 
       - name: Run Checks
         run: |
@@ -275,7 +275,7 @@ jobs:
 
       - name: Install Python Dependencies
         run: |
-          pip install "tox==3.25.1"
+          pip install "tox==3.27.1"
 
       - name: Install Library Into Virtualenv
         run: |
@@ -337,7 +337,7 @@ jobs:
 
       - name: Install Python Dependencies
         run: |
-          pip install "tox==3.25.1"
+          pip install "tox==3.27.1"
 
       - name: Run Micro Benchmarks
         run: |
@@ -384,7 +384,7 @@ jobs:
 
       - name: Install Python Dependencies
         run: |
-          pip install "tox==3.25.1"
+          pip install "tox==3.27.1"
 
       - name: Build Docs
         run: |
diff --git a/.github/workflows/publish_pricing_to_s3.yml b/.github/workflows/publish_pricing_to_s3.yml
index 767502936..7f91f2ed4 100644
--- a/.github/workflows/publish_pricing_to_s3.yml
+++ b/.github/workflows/publish_pricing_to_s3.yml
@@ -36,7 +36,7 @@ jobs:
 
       - name: Install Python Dependencies
         run: |
-          pip install "tox==3.25.1"
+          pip install "tox==3.27.1"
 
       - name: Generate and publish pricing data
         env:
diff --git a/contrib/Dockerfile b/contrib/Dockerfile
index 095cf63ea..924db0f4a 100644
--- a/contrib/Dockerfile
+++ b/contrib/Dockerfile
@@ -54,7 +54,7 @@ RUN set -e && \
 RUN python3.8 -m pip install --upgrade pip
 
 RUN set -e && \
-    python3.8 -m pip install --no-cache-dir "tox==3.25.1"
+    python3.8 -m pip install --no-cache-dir "tox==3.27.1"
 
 COPY . /libcloud
 
diff --git a/requirements-tests.txt b/requirements-tests.txt
index 4b8979c58..a7efa98d5 100644
--- a/requirements-tests.txt
+++ b/requirements-tests.txt
@@ -5,7 +5,7 @@ requests_mock==1.10.0
 pytest==7.0.1
 pytest-xdist==2.5.0
 pytest-benchmark[histogram]==3.4.1
-cryptography==38.0.1
+cryptography==38.0.4
 
 # NOTE: Only needed by nttcis loadbalancer driver
 pyopenssl==22.1.0


[libcloud] 01/02: Try running pyjion tests under ubuntu 20.04.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 972260a44886eebfa3b4315d6c2eefe44e01cd30
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Mon Dec 5 20:25:11 2022 +0100

    Try running pyjion tests under ubuntu 20.04.
---
 .github/workflows/main.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 5f4f7cfb8..faffdc63b 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -54,7 +54,6 @@ jobs:
           - 3.9
           - "3.10"
           - "pypy-3.7"
-          - pyjion
         os:
           - ubuntu-latest
         include:
@@ -62,6 +61,8 @@ jobs:
           # use ubuntu 20.04
           - python_version: 3.6
             os: ubuntu-20.04
+          - python_version: pyjion
+            os: ubuntu-20.04
 
     steps:
       - uses: actions/checkout@master