andreped commited on
Commit
7f5903f
1 Parent(s): d2a32e6

Added info about Python 3.6-3.10 support [no ci]

Browse files
Files changed (2) hide show
  1. README.md +2 -0
  2. setup.py +2 -1
README.md CHANGED
@@ -13,6 +13,8 @@ A pretrained model is made available in a command line tool and can be used as y
13
 
14
  ## Installation
15
 
 
 
16
  Stable latest release:
17
  ```
18
  pip install https://github.com/VemundFredriksen/LungTumorMask/releases/download/v1.1.0/lungtumormask-1.1.0-py2.py3-none-any.whl
 
13
 
14
  ## Installation
15
 
16
+ Software has been tested against Python `3.6-3.10`.
17
+
18
  Stable latest release:
19
  ```
20
  pip install https://github.com/VemundFredriksen/LungTumorMask/releases/download/v1.1.0/lungtumormask-1.1.0-py2.py3-none-any.whl
setup.py CHANGED
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
3
  setup(
4
  name="lungtumormask",
5
  packages=find_packages(),
6
- version='1.1.1',
7
  author="Svein Ole M Sevle, Vemund Fredriksen, and André Pedersen",
8
  url="https://github.com/VemundFredriksen/LungTumorMask",
9
  license="MIT",
@@ -25,6 +25,7 @@ setup(
25
  "Programming Language :: Python :: 3.7",
26
  "Programming Language :: Python :: 3.8",
27
  "Programming Language :: Python :: 3.9",
 
28
  "License :: OSI Approved :: MIT License",
29
  "Operating System :: OS Independent",
30
  ],
 
3
  setup(
4
  name="lungtumormask",
5
  packages=find_packages(),
6
+ version='1.1.2',
7
  author="Svein Ole M Sevle, Vemund Fredriksen, and André Pedersen",
8
  url="https://github.com/VemundFredriksen/LungTumorMask",
9
  license="MIT",
 
25
  "Programming Language :: Python :: 3.7",
26
  "Programming Language :: Python :: 3.8",
27
  "Programming Language :: Python :: 3.9",
28
+ "Programming Language :: Python :: 3.10",
29
  "License :: OSI Approved :: MIT License",
30
  "Operating System :: OS Independent",
31
  ],