File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Release checklist
4
4
- [ ] Create a release branch.
5
5
- [ ] Set version to a stable number.
6
6
- [ ] Change current development version in ` CHANGELOG.rst ` to stable version.
7
+ - [ ] Change the version in ` __init__.py `
7
8
- [ ] Merge the release branch into ` main ` .
8
9
- [ ] Create a test pypi package from the main branch. ([ Instructions.] (
9
10
https://packaging.python.org/tutorials/packaging-projects/#generating-distribution-archives
Original file line number Diff line number Diff line change @@ -133,7 +133,6 @@ def build_isa_l():
133
133
],
134
134
python_requires = ">=3.6" ,
135
135
setup_requires = ["cython" ],
136
- install_requires = ["setuptools" ],
137
136
ext_modules = [
138
137
IsalExtension ("isal.isal_zlib" , ["src/isal/isal_zlib.pyx" ]),
139
138
IsalExtension ("isal._isal" , ["src/isal/_isal.pyx" ]),
Original file line number Diff line number Diff line change 18
18
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
19
# SOFTWARE.
20
20
21
- import pkg_resources
22
-
23
21
from ._isal import ISAL_MAJOR_VERSION , ISAL_MINOR_VERSION , \
24
22
ISAL_PATCH_VERSION , ISAL_VERSION
25
23
26
24
__all__ = [
27
25
"ISAL_MAJOR_VERSION" ,
28
26
"ISAL_MINOR_VERSION" ,
29
27
"ISAL_PATCH_VERSION" ,
30
- "ISAL_VERSION"
28
+ "ISAL_VERSION" ,
29
+ "__version__"
31
30
]
32
31
33
- __version__ = pkg_resources . get_distribution ( __package__ ). version
32
+ __version__ = "0.3.0-dev"
You can’t perform that action at this time.
0 commit comments