Skip to content

Commit

Permalink
chore: release 0.51.0 (#404)
Browse files Browse the repository at this point in the history
Signed-off-by: SdgJlbl <sarah.diot-girard@owkin.com>
  • Loading branch information
SdgJlbl authored Mar 12, 2024
1 parent 9edd757 commit 8b1ee53
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: 3.11
- name: Install tools
run: pip install wheel
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: "3.11"
- name: Install tools
run: pip install flake8 black isort wheel docstring-parser
- name: Lint
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
name: Tests on Python ${{ matrix.python-version }}
steps:
- name: Set up python
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.51.0](https://github.com/Substra/substra/releases/tag/0.51.0) - 2024-03-07

### Changed

- Dropped Python 3.8 support ([#404](https://github.com/Substra/substra/pull/404))
- Compute task status `DOING` is renamed `EXECUTING` ([#401](https://github.com/Substra/substra/pull/401))
- Compute plan statuses `EMPTY`, `WAITING` ansd `TODO` are merged into new status `CREATED` ([#401](https://github.com/Substra/substra/pull/401))

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"Topic :: Utilities",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -49,14 +48,14 @@
"tqdm",
"python-slugify",
],
python_requires=">=3.8",
python_requires=">=3.9",
extras_require={
"dev": [
"pandas",
"pytest",
"pytest-cov",
"pytest-mock",
"substratools>=0.21.1",
"substratools>=0.21.2",
"black",
"flake8",
"isort",
Expand Down
2 changes: 1 addition & 1 deletion substra/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.50.0"
__version__ = "0.51.0"

0 comments on commit 8b1ee53

Please sign in to comment.