Skip to content

Commit

Permalink
Bump version to v0.7.3 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwilliammd committed Jan 17, 2025
1 parent b3c06ed commit 0c91aa4
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.10"]
python: ["3.10"]
task:
- name: Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.8"
python: "3.10"

sphinx:
configuration: docs/source/conf.py
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v0.7.3](https://github.com/ivanwilliammd/iderare-pheno/releases/tag/v0.7.3) - 2025-01-17
- Bump update requirement and workflows for Python >=3.10 for sphinx bump and better sustainability

## [v0.7.2](https://github.com/ivanwilliammd/iderare-pheno/releases/tag/v0.7.2) - 2024-12-23
- Added step-by-step in RELEASE_PROCESS.md

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ This script is recommended if you would like to do conversion, linkage analysis,

<!-- start py version -->

**iderare-pheno** requires Python 3.8 or later.
**iderare-pheno** requires Python 3.10 or later.

<!-- end py version -->

Expand Down
6 changes: 6 additions & 0 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
./scripts/release.sh
```

or if you're on Windows:
```bash
release.bat
```
This will commit the changes to the CHANGELOG and `version.py` files and then create a new tag in git
which will trigger a workflow on GitHub Actions that handles the rest.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Installation
============

**iderare-pheno** supports Python >= 3.8.
**iderare-pheno** supports Python >= 3.10.

## Installing with `pip`

Expand Down
2 changes: 1 addition & 1 deletion iderare_pheno/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_MINOR = "7"
# On main and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "2"
_PATCH = "3"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers = [
authors = [
{name = "Ivan William Harsono", email = "ivanwilliam.md@gmail.com"}
]
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = [
"pandas",
"numpy",
Expand Down

0 comments on commit 0c91aa4

Please sign in to comment.