Skip to content

Commit

Permalink
Merge branch 'develop' into rc
Browse files Browse the repository at this point in the history
  • Loading branch information
atztogo committed Dec 9, 2024
2 parents 47cb01d + 42f1e17 commit 493e7c0
Show file tree
Hide file tree
Showing 25 changed files with 871 additions and 120 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish package to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/master')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/heads/main')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: ["3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -34,6 +34,9 @@ jobs:
- name: Test with pytest
run: |
conda activate test
velph --help
phelel --help
phelel-load --help
pytest -v --cov=./ --cov-report=xml
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: check-added-large-files

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.1
rev: v0.8.1
hooks:
- id: ruff
args: [ "--fix", "--show-fixes" ]
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
graft test
7 changes: 7 additions & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(changelog)=

# Change Log

## Dec-9-2024: Version 0.6.6

- Collection of minor updates of velph command.
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
author = "Atsushi Togo"

version = "0.6"
release = "0.6.1"
release = "0.6.5"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
1 change: 1 addition & 0 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ BSD-3-Clause.
:hidden:
install
velph
changelog
```
9 changes: 8 additions & 1 deletion doc/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@

A simplest installation using conda-forge packages:

```
% conda create -n phelel -c conda-forge
% conda activate phelel
% conda install phelel
```

From source code of phelel,
```
% conda create -n phelel -c conda-forge
% conda activate phelel
Expand All @@ -24,4 +31,4 @@ A simplest installation using conda-forge packages:
% pip install -e .
```

PyPI and conda forge package will be made in the future.
The pypi package is also available.
Loading

0 comments on commit 493e7c0

Please sign in to comment.