Skip to content

Commit 4b5d459

Browse files
author
Martin Larralde
committed
Release v1.0.1
1 parent ceef99f commit 4b5d459

File tree

5 files changed

+20
-12
lines changed

5 files changed

+20
-12
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,20 @@ script:
7272
after_script:
7373
- python -m codecov
7474

75+
before_deploy:
76+
- python setup.py sdist bdist_wheel
77+
- twine check dist/*
78+
7579
notifications:
7680
email:
7781
- althonosdev@gmail.com
7882

7983
deploy:
80-
- provider: pypi
81-
distributions: sdist bdist_wheel
82-
user: althonos
84+
- provider: script
85+
script: twine upload dist/*
8386
skip_cleanup: true
84-
password:
85-
secure: JuI14XA+bwrg9Qe5HNDoPj6Dzi4BrNhc/Xq2cStTOeosyCIUKRgEaIkkZ0NrRZ5g9CTdArRwwjtfAzK8MlkTTt4iCVasmirnjafGCrw5vY/ELlqdBuu52RmIx2o5o0eua7dTjI6Q5rrCOBPj4/nB6JFpsTyytxhUXjdw/Wr9ZpSleS6iaWaF/smLTPOPpO6NQh/2kPWM7AErax2Bbg9MdXYTLoBCBk0Kjub93ymSXyZCjX3y1lfpldW7Nmn8ZXcU/ak408oD4EtHMC4BeNpoKju1Jl5qLhMHWIo/G2/X/B9Jdgju1C4DhcqHhumyTm9aI33ECmLMCq6vdsG3gmLl+z0Key6w1A6xekEQrWbmPvi7AmbGVeNz4V4HYVv2cyEmxwhSCIrPWiZKK4YqiJSlzsufSdcrtVYIZ5Xhvb1YXVnGAJ471+ua+ESuQHBUhQM3c3kpFyabsLAPN3eIRjAOWVFNWc/LP/5TA8VgbG3P6D/hGBOZBIyNka3Kj6Q6YOkPyrb80oiJJ229GwTvlG/FQ5by7t2une9At9TfTsKKsKkAlsFSYoCQ6gY65+hzeWrFkTssXSNZbq1MKillL+7/uaW6WwvvVYSl9XAXuaXCrCB7c5fwXem3tWnqV2R75bVaHelgIwjGd4m60DDa+xQG8oikREVuLBILNjp4fEYKrEc=
8687
on:
8788
tags: true
8889
repo: ISA-tools/mzml2isa
89-
python: '3.5'
90-
# condition: $STUDY == MTBLS263
90+
python: '3.6'
91+

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v1.0.1] - 2019-01-06
10+
### Changed
11+
- Added `fs` v2.2.0 to supported `fs` versions.
12+
- Bumped `pronto` requirement to v0.11
13+
914
## [v1.0.0] - 2018-10-16
1015
### Added
1116
- Added GPLv3 license file to source and `wheel` distribution.
@@ -21,5 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2126
- Pinned dependencies in `setup.cfg`.
2227
- Fixed crash on missing `Spectrum representation`.
2328

24-
[Unreleased]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.0...HEAD
29+
[Unreleased]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.1...HEAD
30+
[v1.0.1]: https://github.com/ISA-Tools/mzml2isa/compare/v1.0.0...v1.0.1
2531
[v1.0.0]: https://github.com/ISA-Tools/mzml2isa/compare/v0.5.1...v1.0.0

ci/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ codecov
33
green
44
pip
55
setuptools
6-
wheel
6+
wheel
7+
twine
78
pyinstaller ; sys_platform == 'win32'

mzml2isa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
__author__ = 'Thomas Lawson, Martin Larralde'
3737
__credits__ = 'Thomas Lawson, Martin Larralde, Ralf Weber, Reza Salek, Ken Haug, Christoph Steinbeck'
38-
__version__ = '1.0.0'
38+
__version__ = '1.0.1'
3939
__license__ = 'GPLv3'
4040

4141
try:

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ tests_require =
4444
fs.archive[tar.xz] ~=0.5
4545
install_requires =
4646
cached-property ~=1.4
47-
fs ~=2.2.0
48-
pronto ~=0.11.0
47+
fs >=2.1.0,<2.3
48+
pronto >=0.10.0,<1.0.0
4949
six ~=1.11
5050
openpyxl ~=2.5
5151
lxml ~=4.2 ; python_version < '3'

0 commit comments

Comments
 (0)