Skip to content

Commit

Permalink
chore: bump deps (#377)
Browse files Browse the repository at this point in the history
also fixes the build cache and toast.yml to use pyproject.toml introduced in #372
  • Loading branch information
tekumara authored Jul 30, 2022
1 parent 3bf410b commit 9db2f96
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/cache@v2
with:
path: .venv
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv-${{ hashFiles('setup.py') }}
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv-${{ hashFiles('pyproject.toml') }}
- name: make install
if: steps.cache-venv.outputs.cache-hit != 'true'
run: make install
Expand Down Expand Up @@ -51,3 +51,6 @@ jobs:
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
tag: "${{ env.version }}"
# - name: Setup tmate session
# if: ${{ failure() }}
# uses: mxschmitt/action-tmate@v3
28 changes: 14 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@ keywords = ["AWS", "EC2", "command line", "cli"]
classifiers = ["License :: OSI Approved :: MIT License"]
requires-python = ">=3.6"
dependencies = [
"boto3==1.24.1",
"importlib_resources==5.7.1",
"boto3==1.24.41",
"importlib_resources==5.9.0",
"pytoml==0.1.21",
"pytz==2022.1",
"rich==12.4.4",
"typing_extensions==4.2.0",
"rich==12.5.1",
"typing_extensions==4.3.0",
]

[project.optional-dependencies]
dev = [
"black==22.3.0",
"black~=22.6",
"build~=0.7",
"boto3-stubs[ec2,compute-optimizer,ssm,s3]==1.21.27",
"boto3-stubs[ec2,compute-optimizer,ssm,s3]==1.24.41",
"cogapp~=3.3",
"darglint==1.8.1",
"isort==5.10.1",
"flake8==4.0.1",
"darglint~=1.8",
"isort~=5.10",
"flake8~=4.0",
"flake8-annotations~=2.9",
"flake8-colors==0.1.9",
"moto[ec2]==3.1.11",
"pre-commit~=2.19",
"pyfakefs==4.5.6",
"flake8-colors~=0.1",
"moto[ec2]==3.1.16",
"pre-commit~=2.20",
"pyfakefs~=4.6",
"pytest~=7.1",
"pytest-mock==3.7.0",
"pytest-mock~=3.8",
"twine~=4.0",
]

Expand Down
4 changes: 1 addition & 3 deletions toast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ tasks:
input_paths:
- Makefile
- setup.py
- pyproject.toml
- README.md
- package.json
- package-lock.json
- .install-typings-boto3.sh
- src/
environment:
CI: true
Expand All @@ -35,7 +34,6 @@ tasks:
input_paths:
- .darglint
- .flake8
- pyproject.toml
- pyrightconfig.json
- tests/
environment:
Expand Down

0 comments on commit 9db2f96

Please sign in to comment.