Skip to content

Commit

Permalink
build(pypi): new version 1.1.1 (#86)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
deepcharles authored Nov 26, 2020
1 parent 9dae11c commit e2290ef
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 84 deletions.
81 changes: 0 additions & 81 deletions .github/workflows/publish-to-pypi-tmp.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.7'
python-version: '3.8'

- name: Install cibuildwheel and dependencies
run: |
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.1.1] - 2020-11-26

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.

## [1.1.0] - 2020-11-23

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


[Unreleased]: https://github.com/deepcharles/ruptures/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/deepcharles/ruptures/compare/v1.1.1...HEAD
[1.1.1]: https://github.com/deepcharles/ruptures/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/deepcharles/ruptures/compare/v1.0.6...v1.1.0
[1.0.6]: https://github.com/deepcharles/ruptures/compare/v1.0.5...v1.0.6
[1.0.5]: https://github.com/deepcharles/ruptures/compare/v1.0.4...v1.0.5
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="ruptures",
version="1.1.0-rc.1",
version="1.1.1",
packages=find_packages(exclude=["docs", "tests*", "images"]),
install_requires=["numpy", "scipy"],
extras_require={"display": ["matplotlib"]},
Expand Down

0 comments on commit e2290ef

Please sign in to comment.