Skip to content

Commit 77e28f5

Browse files
committed
[ci] Dropped support for Python 3.8 (httpx-retries requires Python ≥ 3.9)
1 parent 9bb4c32 commit 77e28f5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build_and_upload_conda_packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1616
steps:
1717
- uses: actions/checkout@v4
1818
with:

.github/workflows/pyatlan-pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
# Specify version as a string
1313
# https://github.com/actions/setup-python/issues/160"
14-
python-version: ["3.8", "3.12", "3.13"]
14+
python-version: ["3.9", "3.12", "3.13"]
1515

1616
steps:
1717
- name: Checkout code
@@ -48,7 +48,7 @@ jobs:
4848
matrix:
4949
# Specify version as a string
5050
# https://github.com/actions/setup-python/issues/160"
51-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
51+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5252

5353
steps:
5454
- name: Checkout code

.github/workflows/pyatlan-test-cron.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.8, 3.12]
14+
python-version: [3.9, 3.12]
1515

1616
steps:
1717
- uses: actions/checkout@v4

pyatlan/client/asset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,7 +858,7 @@ def _wait_till_deleted(self, asset: Asset):
858858
asset = self.retrieve_minimal(guid=asset.guid, asset_type=Asset)
859859
if asset.status == EntityStatus.DELETED:
860860
return
861-
except httpx.RetryError as err:
861+
except httpx.TransportError as err:
862862
raise ErrorCode.RETRY_OVERRUN.exception_with_parameters() from err
863863

864864
@validate_arguments

pyatlan/client/atlan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1838,7 +1838,7 @@ def max_retries(
18381838
finally:
18391839
# Restore original transport
18401840
self._session._transport = current_transport
1841-
LOGGER.debug("max_retries restored %s", self._session._transport.retry)
1841+
LOGGER.debug("max_retries restored %s", self._session._transport.retry) # type: ignore[attr-defined]
18421842

18431843

18441844
@contextlib.contextmanager

0 commit comments

Comments
 (0)