File tree 5 files changed +41
-38
lines changed
5 files changed +41
-38
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ tags :
7
+ - ' *'
8
+ pull_request :
9
+ branches : [ master ]
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ - uses : actions/setup-python@v5
17
+ with :
18
+ architecture : x64
19
+ python-version : 3.8
20
+ - name : Install dependencies
21
+ run : |
22
+ pip install --upgrade pip setuptools build numpy
23
+ pip install .[test]
24
+ - name : Run tests
25
+ run : pytest
26
+ - name : Build wheel
27
+ run : python -m build --wheel
28
+ - name : Upload Artifact
29
+ uses : actions/upload-artifact@v4
30
+ with :
31
+ path : dist/*.whl
32
+ - name : Release
33
+ uses : softprops/action-gh-release@v2
34
+ if : startsWith(github.ref, 'refs/tags/')
35
+ with :
36
+ files : dist/*.whl
37
+
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 24
24
25
25
_jars_dir = os .path .join (os .path .dirname (__file__ ), 'jars' )
26
26
27
- JAR_VERSION = '6.5 .1'
27
+ JAR_VERSION = '7.3 .1'
28
28
29
29
JARS = javabridge .JARS + [os .path .realpath (os .path .join (_jars_dir , name + '.jar' ))
30
30
for name in ['bioformats_package' ]]
Original file line number Diff line number Diff line change 1
1
[nosetests]
2
2
with-javabridge = True
3
- classpath = bioformats/jars/loci_tools.jar
4
-
5
- [build_sphinx]
6
- source-dir = docs/
7
- build-dir = docs/_build
8
- all_files = 1
9
-
10
- [upload_sphinx]
11
- upload-dir = docs/_build/html
3
+ classpath = bioformats/jars/bioformats_package.jar
Original file line number Diff line number Diff line change 6
6
classifiers = [
7
7
"Development Status :: 5 - Production/Stable" ,
8
8
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)" ,
9
- "Programming Language :: Python :: 2" ,
10
9
"Programming Language :: Python :: 3" ,
11
10
"Programming Language :: Java" ,
12
11
"Topic :: Scientific/Engineering :: Bio-Informatics" ,
15
14
description = "Read and write life sciences file formats" ,
16
15
extras_require = {
17
16
"test" : [
18
- "pytest>=3.3.2,<4 "
17
+ "pytest>=6.1 "
19
18
]
20
19
},
21
20
install_requires = [
42
41
"bioformats"
43
42
],
44
43
url = "http://github.com/CellProfiler/python-bioformats/" ,
45
- version = "4.1.0 "
44
+ version = "4.1.10001 "
46
45
)
You can’t perform that action at this time.
0 commit comments