Skip to content

Commit d92efa4

Browse files
authored
ci: 👷 github actions updates and doc python version update to 3.13 (#1259)
Signed-off-by: Onuralp SEZER <thunderbirdtr@gmail.com>
1 parent c693b60 commit d92efa4

6 files changed

Lines changed: 13 additions & 11 deletions

File tree

‎.github/workflows/ci.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
os: [ubuntu-latest, macos-latest, windows-latest]
3838
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
3939
steps:
40-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
40+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4141
- name: Setup uv python package manager
42-
uses: astral-sh/setup-uv@v6
42+
uses: astral-sh/setup-uv@eb1897b8dc4b5d5bfe39a428a8f2304605e0983c # v7.0.0
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
enable-cache: true
@@ -96,7 +96,7 @@ jobs:
9696
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
9797
steps:
9898
- name: Setup uv python package manager
99-
uses: astral-sh/setup-uv@v6
99+
uses: astral-sh/setup-uv@eb1897b8dc4b5d5bfe39a428a8f2304605e0983c # v7.0.0
100100
with:
101101
python-version: ${{ matrix.python-version }}
102102
enable-cache: true

‎.github/workflows/mmdet.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ jobs:
6767
matrix:
6868
python-version: ["3.11"] # Only test on Python 3.11
6969
steps:
70-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
70+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
7171
- name: Setup uv python package manager
72-
uses: astral-sh/setup-uv@v6
72+
uses: astral-sh/setup-uv@eb1897b8dc4b5d5bfe39a428a8f2304605e0983c # v7.0.0
7373
with:
7474
python-version: ${{ matrix.python-version }}
7575
enable-cache: true

‎.github/workflows/publish_docs.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
timeout-minutes: 10
2727
strategy:
2828
matrix:
29-
python-version: ["3.10"]
29+
python-version: ["3.13"]
3030
steps:
3131
- name: 📥 Checkout the repository
32-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
32+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3333
with:
3434
fetch-depth: 0
3535

‎.github/workflows/publish_pypi.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
11+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1212
- name: Setup uv python package manager
13-
uses: astral-sh/setup-uv@v6
13+
uses: astral-sh/setup-uv@eb1897b8dc4b5d5bfe39a428a8f2304605e0983c # v7.0.0
1414
with:
1515
enable-cache: true
1616
prune-cache: false

‎.github/workflows/ruff.yaml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
ruff:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
23+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2424
- name: Set up Python
2525
uses: actions/setup-python@v6
2626
with:
2727
python-version: '3.10'
2828
- name: Install uv
29-
uses: astral-sh/setup-uv@v6
29+
uses: astral-sh/setup-uv@eb1897b8dc4b5d5bfe39a428a8f2304605e0983c # v7.0.0
3030
- name: Install dependencies
3131
run: |
3232
uv venv --python 3.10

‎pyproject.toml‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ classifiers = [
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
3333
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
35+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
3436
"Topic :: Software Development :: Libraries",
3537
"Topic :: Software Development :: Libraries :: Python Modules",
3638
]

0 commit comments

Comments
 (0)