Skip to content

Commit 9ef7a69

Browse files
authored
Merge pull request #74 from leonhard-s/support/ci-maintenance
CI Maintenance
2 parents f915a6b + df07c55 commit 9ef7a69

File tree

6 files changed

+5
-22
lines changed

6 files changed

+5
-22
lines changed

.github/workflows/code-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: "3.11"
19+
python-version: "3.13"
2020

2121
- name: Install dependencies
2222
run: |

.github/workflows/daily-ci-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Python
1818
uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.11"
20+
python-version: "3.13"
2121

2222
- name: Install dependencies
2323
run: |

.readthedocs.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
intersphinx_mapping = {
102102
'python': ('https://docs.python.org/3', None),
103103
'aiohttp': ('https://docs.aiohttp.org/en/stable/', None),
104-
'requests': ('https://docs.python-requests.org/en/master/', None),
104+
'requests': ('https://requests.readthedocs.io/en/latest/', None),
105105
'yarl': ('https://yarl.readthedocs.io/en/latest/', None),
106106
'websockets': ('https://websockets.readthedocs.io/en/stable/', None)
107107
}

tests/live/ps2_character_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async def test_name_long(self) -> None:
109109

110110
async def test_online_status(self) -> None:
111111
"""Test the online_status() helper method."""
112-
expected = 13 if await self.character.is_online() else 0
112+
expected = 10 if await self.character.is_online() else 0
113113
self.assertEqual(await self.character.online_status(), expected)
114114

115115
async def test_outfit(self) -> None:

tests/live/rest_client_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async def test_get_by_name(self) -> None:
9999
if char is None:
100100
self.fail('Character not found')
101101
self.assertIsInstance(char, Character)
102-
world = await self.client.get_by_name(World, 'Miller')
102+
world = await self.client.get_by_name(World, 'Wainwright')
103103
if world is None:
104104
self.fail('World not found')
105105
self.assertIsInstance(world, World)

0 commit comments

Comments
 (0)