From 7a54d1d9c541d9c017757b861623a2cead54b16b Mon Sep 17 00:00:00 2001 From: "Dan Ryan (GitHub Noreply Key)" Date: Wed, 31 Aug 2022 12:47:17 -0400 Subject: [PATCH 1/3] =?UTF-8?q?=E2=9C=85=20add=20Python=203.11=20to=20test?= =?UTF-8?q?=20matrix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/run_tests.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index eb7ad09..5082042 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -7,7 +7,7 @@ jobs: name: Python Test Suite strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11-dev"] env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} diff --git a/pyproject.toml b/pyproject.toml index 6604d85..00f571a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ readme = "README.md" d3ploy = "d3ploy.d3ploy:cli" [tool.poetry.dependencies] -python = "^3.7 || ^3.8 || ^3.9 || ^3.10" +python = "^3.7 || ^3.8 || ^3.9 || ^3.10 || ^3.11" boto3 = "^1.19.2" pathspec = "^0.9.0" tqdm = "^4.62.3" From 5d220bc1ba46e22e91692cfdb17016c6e9bfaf8d Mon Sep 17 00:00:00 2001 From: "Dan Ryan (GitHub Noreply Key)" Date: Wed, 31 Aug 2022 12:53:01 -0400 Subject: [PATCH 2/3] =?UTF-8?q?=E2=9C=85=20update=20setup-python=20to=20v4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release_new_tags.yml | 2 +- .github/workflows/run_tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_new_tags.yml b/.github/workflows/release_new_tags.yml index 0849216..100e17e 100644 --- a/.github/workflows/release_new_tags.yml +++ b/.github/workflows/release_new_tags.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup Python 3.7 - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: 3.7 - name: Install poetry diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 5082042..df5b39e 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install poetry From a448b4590be214801159c5b7df307b6aefb4c4d5 Mon Sep 17 00:00:00 2001 From: "Dan Ryan (GitHub Noreply Key)" Date: Wed, 31 Aug 2022 13:00:02 -0400 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=94=96=20bump=20version=20number?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- d3ploy/d3ploy.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/d3ploy/d3ploy.py b/d3ploy/d3ploy.py index 5ec1ebe..f0cc9f8 100755 --- a/d3ploy/d3ploy.py +++ b/d3ploy/d3ploy.py @@ -24,7 +24,7 @@ from colorama import init as colorama_init from tqdm import tqdm -VERSION = "4.2.0" +VERSION = "4.3.0" VALID_ACLS = [ "private", diff --git a/pyproject.toml b/pyproject.toml index 00f571a..dd2a6f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "d3ploy" -version = "4.2.0" +version = "4.3.0" description = "Easily deploy to S3 with multiple environment support." authors = ["dryan "] license = "MIT"