Skip to content

Commit

Permalink
⬆️ Update dependencies (#143)
Browse files Browse the repository at this point in the history
* 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] <support@github.com>

* 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] <support@github.com>

* 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] <support@github.com>

* ⬆️ 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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
ff137 and dependabot[bot] authored Jan 15, 2024
1 parent d5ca0f7 commit d5d22a6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install \
isort~=5.12.0 \
black~=23.11.0
isort~=5.13.2 \
black~=23.12.1
- name: Check import style with isort
run: |
isort . --check --profile black --diff
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install \
isort~=5.12.0 \
black~=23.11.0
isort~=5.13.2 \
black~=23.12.1
- name: Check import style with isort
run: |
isort . --check --profile black --diff
Expand Down
4 changes: 2 additions & 2 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
anyio>=3.7.1
autoflake~=2.2.1
black~=23.11.0
isort~=5.12.0
black~=23.12.1
isort~=5.13.2
pytest~=7.4.0
pytest-mock~=3.12.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiohttp~=3.9.0
pydantic~=2.5.1
python-dateutil~=2.8.2
typing-extensions~=4.8.0
typing-extensions~=4.9.0
urllib3~=2.1.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_requirements(filename: str):
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version="0.11.0",
version="0.11.0-rev0",
description="A simple python client for controlling an ACA-Py agent",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit d5d22a6

Please sign in to comment.