mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-15 03:53:41 +02:00
Merge branch 'develop' into documentation
This commit is contained in:
commit
d0a73320ab
6 changed files with 16 additions and 12 deletions
6
.github/workflows/docs.yml
vendored
6
.github/workflows/docs.yml
vendored
|
@ -11,10 +11,10 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Set up Python environment
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.8"
|
||||
- uses: actions/checkout@v2
|
||||
python-version: "3.10"
|
||||
- uses: actions/checkout@v3
|
||||
- name: Updated documentation
|
||||
run: |
|
||||
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
||||
|
|
4
.github/workflows/examples.yml
vendored
4
.github/workflows/examples.yml
vendored
|
@ -20,10 +20,10 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout source
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup python
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
|
|
6
.github/workflows/flake8.yml
vendored
6
.github/workflows/flake8.yml
vendored
|
@ -13,13 +13,13 @@ jobs:
|
|||
name: Lint
|
||||
steps:
|
||||
- name: Check out source repository
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
- name: Set up Python environment
|
||||
uses: actions/setup-python@v1
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: "3.10"
|
||||
- name: flake8 Lint
|
||||
uses: py-actions/flake8@v1
|
||||
uses: py-actions/flake8@v2
|
||||
with:
|
||||
ignore: "E501"
|
||||
exclude: "__init__.py, input/__init__.py"
|
||||
|
|
4
.github/workflows/pytest.yml
vendored
4
.github/workflows/pytest.yml
vendored
|
@ -25,10 +25,10 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout source
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup python
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
|
|
|
@ -2,13 +2,17 @@
|
|||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [2.4.0] - 2022-xx-xx
|
||||
## [2.4.0] - 2022-12-01
|
||||
### Added
|
||||
- Log-derivatives and symmetric log-effective mass added.
|
||||
- Covariance for irregular Monte Carlo chains sped up.
|
||||
- Additional checks in `Corr.GEVP` added.
|
||||
|
||||
### Fixed
|
||||
- Bug in `Obs.details` fixed which appeared when tau had zero error.
|
||||
- Bug in `input.json` export in connection with `numpy.int64` fixed.
|
||||
- Small bug fixes in `input.openQCD`.
|
||||
|
||||
|
||||
|
||||
## [2.3.1] - 2022-10-19
|
||||
|
|
|
@ -1 +1 @@
|
|||
__version__ = "2.4.0+dev"
|
||||
__version__ = "2.4.0"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue