Commit 441b788 1 parent 1673f86 commit 441b788 Copy full SHA for 441b788
File tree 6 files changed +10
-11
lines changed
6 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 14
14
- name : Setup python
15
15
uses : actions/setup-python@v5
16
16
with :
17
- python-version : ' 3.9 '
17
+ python-version : " 3.10 "
18
18
- name : Checkout repo
19
19
uses : actions/checkout@v4
20
20
- name : Install dependencies
23
23
run : python -m build
24
24
# Do the publish
25
25
- name : Publish a Python distribution to PyPI
26
- # Might want to add but does not work on workflow_dispatch :
27
- # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
28
26
uses : pypa/gh-action-pypi-publish@master
29
27
with :
30
28
user : ${{ secrets.pipy_token }}
Original file line number Diff line number Diff line change 21
21
strategy :
22
22
fail-fast : false
23
23
matrix :
24
- python-version : [3.9 , "3.10 "]
25
- test : [' coveralls', ' pytest' ]
24
+ python-version : ["3.10" , "3.11 "]
25
+ test : [" coveralls", " pytest" ]
26
26
# Installation on py3.10 is rather slow at the moment
27
27
exclude :
28
28
- python-version : " 3.11"
Original file line number Diff line number Diff line change 20
20
strategy :
21
21
fail-fast : false
22
22
matrix :
23
- python-version : [3.9 , "3.10 "]
23
+ python-version : ["3.10" , "3.11 "]
24
24
steps :
25
25
- name : Setup python
26
26
uses : actions/setup-python@v5
Original file line number Diff line number Diff line change 11
11
apt_packages :
12
12
- graphviz
13
13
tools :
14
- python : " 3.9 "
14
+ python : " 3.10 "
15
15
16
16
python :
17
17
install :
Original file line number Diff line number Diff line change 296
296
297
297
298
298
# Example configuration for intersphinx: refer to the Python standard library.
299
- intersphinx_mapping = {"https://docs.python.org/" : None }
299
+ intersphinx_mapping = {"python" : ( " https://docs.python.org/3" , None ) }
300
300
301
301
302
302
def write_contributing ():
Original file line number Diff line number Diff line change @@ -11,8 +11,9 @@ classifiers = [
11
11
" Development Status :: 5 - Production/Stable" ,
12
12
" License :: OSI Approved :: BSD License" ,
13
13
" Natural Language :: English" ,
14
- " Programming Language :: Python :: 3.9" ,
15
14
" Programming Language :: Python :: 3.10" ,
15
+ " Programming Language :: Python :: 3.11" ,
16
+ " Programming Language :: Python :: 3.12" ,
16
17
" Intended Audience :: Science/Research" ,
17
18
" Programming Language :: Python :: Implementation :: CPython" ,
18
19
" Topic :: Scientific/Engineering :: Physics" ,
@@ -23,7 +24,7 @@ repository = "https://github.com/AxFoundation/strax"
23
24
rechunker = " strax.scripts.rechunker:main"
24
25
25
26
[tool .poetry .dependencies ]
26
- python = " >=3.6 ,<3.13"
27
+ python = " >=3.10 ,<3.13"
27
28
blosc = " *"
28
29
click = " *"
29
30
deepdiff = " *"
@@ -33,7 +34,7 @@ immutabledict = "*"
33
34
lz4 = " *"
34
35
numba = " >=0.43.1"
35
36
numexpr = " *"
36
- numpy = " >=1.18.5,<2.0.0 "
37
+ numpy = " >=1.18.5"
37
38
packaging = " *"
38
39
pandas = " *"
39
40
psutil = " *"
You can’t perform that action at this time.
0 commit comments