Skip to content

Commit d5d22a6

Browse files
⬆️ Update dependencies (#143)
* Update isort requirement from ~=5.12.0 to ~=5.13.2 Updates the requirements on [isort](https://github.com/pycqa/isort) to permit the latest version. - [Release notes](https://github.com/pycqa/isort/releases) - [Changelog](https://github.com/PyCQA/isort/blob/main/CHANGELOG.md) - [Commits](PyCQA/isort@5.12.0...5.13.2) --- updated-dependencies: - dependency-name: isort dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> * Update typing-extensions requirement from ~=4.8.0 to ~=4.9.0 Updates the requirements on [typing-extensions](https://github.com/python/typing_extensions) to permit the latest version. - [Release notes](https://github.com/python/typing_extensions/releases) - [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md) - [Commits](python/typing_extensions@4.8.0...4.9.0) --- updated-dependencies: - dependency-name: typing-extensions dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Update black requirement from ~=23.11.0 to ~=23.12.1 Updates the requirements on [black](https://github.com/psf/black) to permit the latest version. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@23.11.0...23.12.1) --- updated-dependencies: - dependency-name: black dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> * ⬆️ Update isort requirement from ~=5.12.0 to ~=5.13.2 * ⬆️ Update black requirement from ~=23.11.0 to ~=23.12.1 * update version --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d5ca0f7 commit d5d22a6

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/python-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ jobs:
3636
run: |
3737
python -m pip install --upgrade pip
3838
pip install \
39-
isort~=5.12.0 \
40-
black~=23.11.0
39+
isort~=5.13.2 \
40+
black~=23.12.1
4141
- name: Check import style with isort
4242
run: |
4343
isort . --check --profile black --diff

.github/workflows/python-test-publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
run: |
3939
python -m pip install --upgrade pip
4040
pip install \
41-
isort~=5.12.0 \
42-
black~=23.11.0
41+
isort~=5.13.2 \
42+
black~=23.12.1
4343
- name: Check import style with isort
4444
run: |
4545
isort . --check --profile black --diff

requirements.dev.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
anyio>=3.7.1
22
autoflake~=2.2.1
3-
black~=23.11.0
4-
isort~=5.12.0
3+
black~=23.12.1
4+
isort~=5.13.2
55
pytest~=7.4.0
66
pytest-mock~=3.12.0

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
aiohttp~=3.9.0
22
pydantic~=2.5.1
33
python-dateutil~=2.8.2
4-
typing-extensions~=4.8.0
4+
typing-extensions~=4.9.0
55
urllib3~=2.1.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def parse_requirements(filename: str):
1919
if __name__ == "__main__":
2020
setup(
2121
name=PACKAGE_NAME,
22-
version="0.11.0",
22+
version="0.11.0-rev0",
2323
description="A simple python client for controlling an ACA-Py agent",
2424
long_description=long_description,
2525
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)