File tree Expand file tree Collapse file tree 6 files changed +30
-25
lines changed Expand file tree Collapse file tree 6 files changed +30
-25
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ permissions:
3
3
contents : read
4
4
5
5
on :
6
-
7
6
pull_request :
8
7
branches :
9
8
- main
25
24
26
25
- uses : actions/setup-python@v5
27
26
with :
28
- python-version : " 3.10 "
27
+ python-version : " 3.13 "
29
28
30
29
- uses : tlambert03/setup-qt-libs@19e4ef2d781d81f5f067182e228b54ec90d23b76 # v1
31
30
@@ -53,16 +52,16 @@ jobs:
53
52
needs : build-docs
54
53
if : contains(github.ref, 'tags')
55
54
steps :
56
- - uses : actions/checkout@v4
57
- with :
58
- persist-credentials : false
59
-
60
- with :
61
- name : docs
55
+ - uses : actions/checkout@v4
56
+ with :
57
+ persist-credentials : false
58
+
59
+ with :
60
+ name : docs
62
61
63
- - name : Push to GitHub pages
64
- uses : JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4
65
- with :
66
- folder : html
67
- ssh-key : ${{ secrets.DEPLOY_KEY }}
68
- repository-name : napari-matplotlib/napari-matplotlib.github.io
62
+ - name : Push to GitHub pages
63
+ uses : JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4
64
+ with :
65
+ folder : html
66
+ ssh-key : ${{ secrets.DEPLOY_KEY }}
67
+ repository-name : napari-matplotlib/napari-matplotlib.github.io
Original file line number Diff line number Diff line change 15
15
merge_group :
16
16
17
17
concurrency :
18
- group : ${{ github.workflow }}-${{ github.ref }}
19
- cancel-in-progress : true
18
+ group : ${{ github.workflow }}-${{ github.ref }}
19
+ cancel-in-progress : true
20
20
21
21
jobs :
22
22
pre-commit :
23
23
name : precommit
24
24
runs-on : ubuntu-latest
25
25
steps :
26
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27
27
with :
28
28
fetch-depth : 0
29
- - uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
29
+ - uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
30
30
with :
31
31
python-version : " 3.x"
32
- - uses : pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
32
+ - uses : pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
33
33
with :
34
34
extra_args : --hook-stage manual --all-files
35
35
test :
39
39
fail-fast : false
40
40
matrix :
41
41
platform : [ubuntu-latest, macos-latest, windows-latest]
42
- python-version : ['3.10', '3.11', '3.12' ]
42
+ python-version : ["3.11", "3.12", "3.13" ]
43
43
44
44
steps :
45
45
- uses : actions/checkout@v4
87
87
token : ${{ secrets.CODECOV_TOKEN }}
88
88
fail_ci_if_error : false
89
89
90
-
91
-
92
90
deploy :
93
91
# this will run when you have tagged a commit, starting with "v*"
94
92
# and requires that you have put your twine API key in your
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ python:
10
10
build :
11
11
os : ubuntu-22.04
12
12
tools :
13
- python : " 3.10 "
13
+ python : " 3.13 "
14
14
apt_packages :
15
15
- xvfb
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ 4.0.0
5
+ -----
6
+ Dependencies
7
+ ~~~~~~~~~~~~
8
+
9
+ - Dropped support for Python 3.10
10
+ - Added explicit support and testing for Python 3.13
11
+
4
12
3.0.1
5
13
-----
6
14
Bug fixes
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ install_requires =
31
31
napari>=0.5
32
32
numpy>=1.23
33
33
tinycss2
34
- python_requires = >=3.10
34
+ python_requires = >=3.11
35
35
include_package_data = True
36
36
package_dir =
37
37
=src
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ isolated_build = true
4
4
5
5
[gh-actions]
6
6
python =
7
- 3.10: py310
8
7
3.11: py311
9
8
3.12: py312
9
+ 3.13: py313
10
10
11
11
[testenv]
12
12
extras = testing
You can’t perform that action at this time.
0 commit comments