-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump actions/setup-python from 5.1.1 to 5.2.0 (#531) * Close aiohttp session when deleting a `Connection` (#532) * Add AsusData.DSL for dsllog_dataratedown/up (#530) * Define DSL models by `Endpoint.DSL` (#533) * Bump actions/upload-artifact from 4.3.6 to 4.4.0 (#534) * Improve `Connection` initialization (#535) * Bump python-dateutil to `2.9.0.post0` (#536) * Bump version to `1.13.0` --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: GaryHuang-ASUS <[email protected]>
- Loading branch information
1 parent
34ef067
commit e2a1e0d
Showing
12 changed files
with
362 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
|
@@ -63,7 +63,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
|
@@ -92,7 +92,7 @@ jobs: | |
pytest --cov=asusrouter --cov-report=xml:unit-tests-cov-${{ matrix.python-version }}.xml -k 'not test_devices' | ||
- name: Upload coverage to artifacts | ||
uses: actions/upload-artifact@v4.3.6 | ||
uses: actions/upload-artifact@v4.4.0 | ||
with: | ||
name: unit-tests-cov-${{ matrix.python-version }} | ||
path: unit-tests-cov-${{ matrix.python-version }}.xml | ||
|
@@ -109,7 +109,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v5.1.1 | ||
uses: actions/setup-python@v5.2.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
|
@@ -138,7 +138,7 @@ jobs: | |
pytest --cov=asusrouter --cov-report=xml:real-data-tests-cov-${{ matrix.python-version }}.xml tests/test_devices.py --log-cli-level=INFO | ||
- name: Upload coverage to artifacts | ||
uses: actions/upload-artifact@v4.3.6 | ||
uses: actions/upload-artifact@v4.4.0 | ||
with: | ||
name: real-data-tests-cov-${{ matrix.python-version }} | ||
path: real-data-tests-cov-${{ matrix.python-version }}.xml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Requirements for AsusRouter | ||
|
||
aiohttp>=3.8.1 | ||
python-dateutil==2.8.2 | ||
python-dateutil==2.9.0.post0 | ||
urllib3>=1.26.14 | ||
xmltodict>=0.12.0 |
Oops, something went wrong.