mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-15 20:13: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:
|
steps:
|
||||||
- name: Set up Python environment
|
- name: Set up Python environment
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.8"
|
python-version: "3.10"
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Updated documentation
|
- name: Updated documentation
|
||||||
run: |
|
run: |
|
||||||
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
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:
|
steps:
|
||||||
- name: Checkout source
|
- name: Checkout source
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup python
|
- name: Setup python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
|
6
.github/workflows/flake8.yml
vendored
6
.github/workflows/flake8.yml
vendored
|
@ -13,13 +13,13 @@ jobs:
|
||||||
name: Lint
|
name: Lint
|
||||||
steps:
|
steps:
|
||||||
- name: Check out source repository
|
- name: Check out source repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
- name: Set up Python environment
|
- name: Set up Python environment
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
- name: flake8 Lint
|
- name: flake8 Lint
|
||||||
uses: py-actions/flake8@v1
|
uses: py-actions/flake8@v2
|
||||||
with:
|
with:
|
||||||
ignore: "E501"
|
ignore: "E501"
|
||||||
exclude: "__init__.py, input/__init__.py"
|
exclude: "__init__.py, input/__init__.py"
|
||||||
|
|
4
.github/workflows/pytest.yml
vendored
4
.github/workflows/pytest.yml
vendored
|
@ -25,10 +25,10 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout source
|
- name: Checkout source
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup python
|
- name: Setup python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
|
|
|
@ -2,13 +2,17 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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
|
### Added
|
||||||
- Log-derivatives and symmetric log-effective mass added.
|
- Log-derivatives and symmetric log-effective mass added.
|
||||||
- Covariance for irregular Monte Carlo chains sped up.
|
- Covariance for irregular Monte Carlo chains sped up.
|
||||||
|
- Additional checks in `Corr.GEVP` added.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Bug in `Obs.details` fixed which appeared when tau had zero error.
|
- 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
|
## [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