Skip to content

Commit ae521ac

Browse files
authored
Merge pull request #250 from FullStackWithLawrence/next
version bumps
2 parents 05021b4 + 7432ba3 commit ae521ac

File tree

7 files changed

+8
-9
lines changed

7 files changed

+8
-9
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repos:
2525
hooks:
2626
- id: black
2727
- repo: https://github.com/PyCQA/flake8
28-
rev: 6.1.0
28+
rev: 7.0.0
2929
hooks:
3030
- id: flake8
3131
- repo: https://github.com/PyCQA/isort
@@ -76,7 +76,7 @@ repos:
7676
- id: terraform-validate
7777
- id: tflint
7878
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
79-
rev: v9.10.0
79+
rev: v9.11.0
8080
hooks:
8181
- id: commitlint
8282
stages: [commit-msg]

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"cornflakes.linter.executablePath": "/Users/mcdaniel/desktop/aws-openai/venv/bin/flake8",
2+
"cornflakes.linter.executablePath": "venv/bin/flake8",
33
"[python]": {
44
"editor.defaultFormatter": "ms-python.black-formatter"
55
}

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# [0.9.0](https://github.com/FullStackWithLawrence/aws-openai/compare/v0.8.2...v0.9.0) (2023-12-30)
2-
1+
## [0.9.0](https://github.com/FullStackWithLawrence/aws-openai/compare/v0.8.2...v0.9.0) (2023-12-30)
32

43
### Features
54

6-
* add /info end point ([bc7cdcd](https://github.com/FullStackWithLawrence/aws-openai/commit/bc7cdcdd02efb0f609eae24648b2e1867f38e3f9))
5+
- add /info end point ([bc7cdcd](https://github.com/FullStackWithLawrence/aws-openai/commit/bc7cdcdd02efb0f609eae24648b2e1867f38e3f9))
76

87
## [0.8.2](https://github.com/FullStackWithLawrence/aws-openai/compare/v0.8.1...v0.8.2) (2023-12-30)
98

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
# DO NOT EDIT.
33
# Managed via automated CI/CD in .github/workflows/semanticVersionBump.yml.
4-
__version__ = "0.9.0"
4+
__version__ = "0.9.1"

api/terraform/python/openai_api/common/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
according to the following prioritization sequence:
99
1. constructor
1010
2. environment variables
11-
3. dotenv file
11+
3. `.env` file
1212
4. tfvars file
1313
5. defaults
1414

api/terraform/python/openai_api/common/tests/test_aws_infrastructure.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
sys.path.append(PYTHON_ROOT) # noqa: E402
2323

2424
from openai_api.common.aws import aws_infrastructure_config # noqa: E402
25-
from openai_api.common.conf import settings # noqa: E402
2625

2726

2827
class TestAWSInfrastructure(unittest.TestCase):

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ python =
1414
3.9: gitlint,py39,flake8
1515
3.10: gitlint,py310,flake8
1616
3.11: gitlint,py311,flake8,mypy,black,pylint
17+
3.12: gitlint,py312,flake8,mypy,black,pylint
1718

1819
[testenv]
1920
deps = -rrequirements.txt

0 commit comments

Comments
 (0)