Skip to content

Commit

Permalink
Merge pull request #18 from dryan/python3.11-support
Browse files Browse the repository at this point in the history
✅ add Python 3.11 to test matrix
  • Loading branch information
dryan authored Aug 31, 2022
2 parents 44b5cd7 + a448b45 commit 814ad55
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_new_tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion d3ploy/d3ploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand All @@ -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"
Expand Down

0 comments on commit 814ad55

Please sign in to comment.