Skip to content

Commit ef50277

Browse files
authored
Remove addition of 3.12 and updated GHA to newer versions
1 parent ea9c796 commit ef50277

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.github/workflows/development.yaml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
DOCKER_CLIENT_TIMEOUT: "120"
2929
COMPOSE_HTTP_TIMEOUT: "120"
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- name: Validate version and release notes
3333
run: |
3434
DJ_VERSION=$(grep -oP '\d+\.\d+\.\d+' datajoint/version.py)
@@ -58,18 +58,16 @@ jobs:
5858
py_ver: ["3.9"]
5959
mysql_ver: ["8.0", "5.7"]
6060
include:
61-
- py_ver: "3.12"
62-
mysql_ver: "8.0"
6361
- py_ver: "3.11"
6462
mysql_ver: "8.0"
6563
- py_ver: "3.10"
6664
mysql_ver: "8.0"
6765
- py_ver: "3.8"
6866
mysql_ver: "5.7"
6967
steps:
70-
- uses: actions/checkout@v3
68+
- uses: actions/checkout@v4
7169
- name: Set up Python ${{matrix.py_ver}}
72-
uses: actions/setup-python@v4
70+
uses: actions/setup-python@v5
7371
with:
7472
python-version: ${{matrix.py_ver}}
7573
- name: Install dependencies
@@ -96,9 +94,9 @@ jobs:
9694
matrix:
9795
py_ver: ["3.11"]
9896
steps:
99-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
10098
- name: Set up Python ${{matrix.py_ver}}
101-
uses: actions/setup-python@v4
99+
uses: actions/setup-python@v5
102100
with:
103101
python-version: ${{matrix.py_ver}}
104102
- name: Install dependencies
@@ -119,7 +117,7 @@ jobs:
119117
runs-on: ubuntu-latest
120118
steps:
121119
- name: Checkout
122-
uses: actions/checkout@v3
120+
uses: actions/checkout@v4
123121
- name: Codespell
124122
uses: codespell-project/actions-codespell@v2
125123
publish-docs:
@@ -132,7 +130,7 @@ jobs:
132130
DOCKER_CLIENT_TIMEOUT: "120"
133131
COMPOSE_HTTP_TIMEOUT: "120"
134132
steps:
135-
- uses: actions/checkout@v3
133+
- uses: actions/checkout@v4
136134
- name: Deploy docs
137135
run: |
138136
export MODE=BUILD
@@ -164,9 +162,9 @@ jobs:
164162
outputs:
165163
release_upload_url: ${{steps.create_gh_release.outputs.upload_url}}
166164
steps:
167-
- uses: actions/checkout@v3
165+
- uses: actions/checkout@v4
168166
- name: Set up Python ${{matrix.py_ver}}
169-
uses: actions/setup-python@v4
167+
uses: actions/setup-python@v5
170168
with:
171169
python-version: ${{matrix.py_ver}}
172170
- name: Determine package version

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
DOCKER_CLIENT_TIMEOUT: "120"
99
COMPOSE_HTTP_TIMEOUT: "120"
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Deploy docs
1313
run: |
1414
export MODE=BUILD

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- Fixed - Issue [#1159]((https://github.com/datajoint/datajoint-python/pull/1159) (cascading delete) - PR [#1160](https://github.com/datajoint/datajoint-python/pull/1160)
1515

1616
### 0.14.2 -- July 29, 2024
17-
- Changed - Minimum Python version for Datajoint-Python is now 3.7 PR #1163
17+
- Changed - Minimum Python version for Datajoint-Python is now 3.8 PR #1163
1818

1919
### 0.14.1 -- Jun 02, 2023
2020
- Fixed - Fix altering a part table that uses the "master" keyword - PR [#991](https://github.com/datajoint/datajoint-python/pull/991)

0 commit comments

Comments
 (0)