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 eb7ad09..df5b39e 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 }} @@ -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 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 6604d85..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" @@ -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"