Skip to content

Commit

Permalink
Release 1.7.1 - no changes from 1.7.0 functionally
Browse files Browse the repository at this point in the history
  • Loading branch information
connelldave committed Dec 20, 2022
1 parent 2998813 commit 15296f1
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Checkout master
uses: actions/checkout@master

- name: Set up Python 3.9
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.8

- name: Setup Poetry
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
- name: Checkout master
uses: actions/checkout@master

- name: Set up Python 3.9
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.8

- name: Setup Poetry
run: |
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:
rev: 22.3.0
hooks:
- id: black
language_version: python3.9
language_version: python3.8

- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.9.0
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.7.1] - 2022-20-12

Replaces 1.7.0 which was yanked from pypi after an accidental Python version bump
was released - reverted in 1.7.1

## [1.7.0] - 2022-16-12

### Changed
Expand Down
28 changes: 14 additions & 14 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "botocove"
version = "1.7.0"
version = "1.7.1"
description = "A decorator to allow running a function against all AWS accounts in an organization"
authors = ["Dave Connell <daveconn41@gmail.com>"]
license = "LGPL-3.0-or-later"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/connelldave/botocove"
keywords = ["AWS", "organizations", "AWS organizations", "boto3"]

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.8"
boto3 = "*"
tqdm = "*"
boto3-stubs = {extras = ["sts", "organizations"], version = "*"}
Expand Down Expand Up @@ -75,7 +75,7 @@ flake8-bandit = ["+*", "-S322", "-S101"]
line_length=88

[tool.mypy]
python_version = 3.9
python_version = 3.8
pretty = true
cache_dir = ".mypy_cache/strict"
strict_optional = true
Expand Down

0 comments on commit 15296f1

Please sign in to comment.