File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- name : Checkout
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v4
17
17
- name : Set up Python
18
- uses : actions/setup-python@v1
18
+ uses : actions/setup-python@v5
19
19
with :
20
20
python-version : ' 3.x'
21
21
- name : Install build dependencies
Original file line number Diff line number Diff line change 9
9
test :
10
10
strategy :
11
11
matrix :
12
- python : ['3.10', '3.11', '3.12']
12
+ python : ['3.10', '3.11', '3.12', '3.13' ]
13
13
platform : [ubuntu-latest, macos-latest, windows-latest]
14
14
runs-on : ${{ matrix.platform }}
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v3
17
+ uses : actions/checkout@v4
18
18
- name : Set up Python ${{ matrix.python }}
19
- uses : actions/setup-python@v3
19
+ uses : actions/setup-python@v5
20
20
with :
21
21
python-version : ${{ matrix.python }}
22
22
- name : Install test dependencies
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ name = "jsrm" # Required
17
17
#
18
18
# For a discussion on single-sourcing the version, see
19
19
# https://packaging.python.org/guides/single-sourcing-package-version/
20
- version = " 0.0.10 " # Required
20
+ version = " 0.0.11 " # Required
21
21
22
22
# This is a one-line description or tagline of what your project does. This
23
23
# corresponds to the "Summary" metadata field:
@@ -88,10 +88,10 @@ classifiers = [ # Optional
88
88
# that you indicate you support Python 3. These classifiers are *not*
89
89
# checked by "pip install". See instead "python_requires" below.
90
90
" Programming Language :: Python :: 3" ,
91
- " Programming Language :: Python :: 3.9" ,
92
91
" Programming Language :: Python :: 3.10" ,
93
92
" Programming Language :: Python :: 3.11" ,
94
93
" Programming Language :: Python :: 3.12" ,
94
+ " Programming Language :: Python :: 3.13" ,
95
95
" Programming Language :: Python :: 3 :: Only" ,
96
96
]
97
97
You can’t perform that action at this time.
0 commit comments