Skip to content

Commit d96d648

Browse files
committed
changed supported Python versions from Py3.8 -> Py3.11
1 parent be46fa7 commit d96d648

File tree

2 files changed

+32
-25
lines changed

2 files changed

+32
-25
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest]
14-
python-version: ["3.7", "3.8", "3.9", "3.10"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1515
fail-fast: false
1616
runs-on: ${{ matrix.os }}
1717

setup.py

Lines changed: 31 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,43 @@
33

44

55
setup(
6-
name='medimages4tests',
6+
name="medimages4tests",
77
version=versioneer.get_version(),
8-
author='Thomas G. Close',
9-
author_email='tom.g.close@gmail.com',
8+
author="Thomas G. Close",
9+
author_email="tom.g.close@gmail.com",
1010
packages=find_namespace_packages(),
11-
url='https://github.com/australian-imaging-service/medimages4tests',
12-
license='CC0',
13-
description=('Generates dummy medical image data with realistic headers '
14-
'to be used in image handling tests'),
15-
long_description=open('README.rst').read(),
11+
url="https://github.com/australian-imaging-service/medimages4tests",
12+
license="CC0",
13+
description=(
14+
"Generates dummy medical image data with realistic headers "
15+
"to be used in image handling tests"
16+
),
17+
long_description=open("README.rst").read(),
1618
install_requires=[
17-
'pydicom>=1.0.2',
19+
"pydicom>=1.0.2",
1820
"nibabel>=4.0.1",
1921
"openneuro-py>=2022.2.0",
20-
"attrs>=21.4.0"],
22+
"attrs>=21.4.0",
23+
],
2124
extras_require={
22-
'test': [
23-
'pytest>=5.4.3',
24-
'pytest-env>=0.6.2',
25-
'pytest-cov>=2.12.1']},
25+
"test": ["pytest>=5.4.3", "pytest-env>=0.6.2", "pytest-cov>=2.12.1"]
26+
},
2627
include_package_data=True,
2728
cmdclass=versioneer.get_cmdclass(),
2829
classifiers=(
29-
["Development Status :: 4 - Beta",
30-
"Intended Audience :: Healthcare Industry",
31-
"Intended Audience :: Science/Research",
32-
"License :: OSI Approved :: Apache Software License",
33-
"Natural Language :: English",
34-
"Topic :: Scientific/Engineering :: Bio-Informatics",
35-
"Topic :: Scientific/Engineering :: Medical Science Apps."]
36-
+ ["Programming Language :: Python :: " + str(v)
37-
for v in ('3.7', '3.8', '3.9', '3.10')]),
38-
keywords='repository analysis medical-imaging neuroimaging workflows pipelines')
30+
[
31+
"Development Status :: 4 - Beta",
32+
"Intended Audience :: Healthcare Industry",
33+
"Intended Audience :: Science/Research",
34+
"License :: OSI Approved :: Apache Software License",
35+
"Natural Language :: English",
36+
"Topic :: Scientific/Engineering :: Bio-Informatics",
37+
"Topic :: Scientific/Engineering :: Medical Science Apps.",
38+
]
39+
+ [
40+
"Programming Language :: Python :: " + str(v)
41+
for v in ("3.8", "3.9", "3.10", "3.11")
42+
]
43+
),
44+
keywords="repository analysis medical-imaging neuroimaging workflows pipelines",
45+
)

0 commit comments

Comments
 (0)