Skip to content

Commit e2290ef

Browse files
authored
build(pypi): new version 1.1.1 (#86)
No change to the code compared to the previous version. The package was only partly published to Pypi because of the failure of one provider in the CI. Since Pypi's policy prevents re-uploading twice the same version, we have to increment the version number. * build(pypi): new version 1.1.1 * ci: remove temporary gh action This job was introduced for testing purposes only. * docs(changelog): update changelog * ci(pypi): change python version 3.7-->3.8 No need to have two different python versions in the same gh action. * ci(pypi): use a release candidate to test the ci Make sure that the publishing process to pypi finishes completely. We use a 1.1.1rc1 as a version number. * ci(pypi): new version 1.1.1
1 parent 9dae11c commit e2290ef

File tree

4 files changed

+10
-84
lines changed

4 files changed

+10
-84
lines changed

.github/workflows/publish-to-pypi-tmp.yml

Lines changed: 0 additions & 81 deletions
This file was deleted.

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/setup-python@v2
4242
name: Install Python
4343
with:
44-
python-version: '3.7'
44+
python-version: '3.8'
4545

4646
- name: Install cibuildwheel and dependencies
4747
run: |

CHANGELOG.md

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

1111
### Changed
1212

13+
## [1.1.1] - 2020-11-26
14+
15+
No change to the code compared to the previous version.
16+
The package was only partly published to Pypi because of the failure of one provider in the CI.
17+
Since Pypi's policy prevents re-uploading twice the same version, we have to increment the version number.
18+
1319
## [1.1.0] - 2020-11-23
1420

1521
### Added
@@ -45,7 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4551
- Link to documentation in PyPi description
4652

4753

48-
[Unreleased]: https://github.com/deepcharles/ruptures/compare/v1.1.0...HEAD
54+
[Unreleased]: https://github.com/deepcharles/ruptures/compare/v1.1.1...HEAD
55+
[1.1.1]: https://github.com/deepcharles/ruptures/compare/v1.1.0...v1.1.1
4956
[1.1.0]: https://github.com/deepcharles/ruptures/compare/v1.0.6...v1.1.0
5057
[1.0.6]: https://github.com/deepcharles/ruptures/compare/v1.0.5...v1.0.6
5158
[1.0.5]: https://github.com/deepcharles/ruptures/compare/v1.0.4...v1.0.5

setup.py

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

2525
setup(
2626
name="ruptures",
27-
version="1.1.0-rc.1",
27+
version="1.1.1",
2828
packages=find_packages(exclude=["docs", "tests*", "images"]),
2929
install_requires=["numpy", "scipy"],
3030
extras_require={"display": ["matplotlib"]},

0 commit comments

Comments
 (0)