Skip to content

Commit 89dd046

Browse files
authored
Merge pull request #24 from hotzenklotz/v2.1.2
Prepare release 2.1.2
2 parents ff8c8fd + 6a07ca6 commit 89dd046

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

.github/workflows/publish_pypi.yml

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
- name: Publish to PyPI
2323
run: |
2424
source ~/.venv/bin/activate
25+
26+
pip install --upgrade pip
2527
pip install poetry
2628
2729
poetry install

.github/workflows/test_lint.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
- name: Install dependencies
2525
run: |
2626
source ~/.venv/bin/activate
27+
28+
pip install --upgrade pip
2729
pip install poetry
30+
2831
poetry install
2932
3033
- name: Check code formatting

.pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ ignore-docstrings=yes
361361
ignore-imports=no
362362

363363
# Minimum lines number of a similarity.
364-
min-similarity-lines=4
364+
min-similarity-lines=8
365365

366366

367367
[BASIC]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ python -m pytest tests
6464
## Contributing / Development
6565
Community contributions are welcome.
6666

67-
Dependency management is handled through [Poetry](https://python-poetry.org/):
67+
Some kind of virtual environment for Python is recommended. Consider `venv`, `conda`or similar. Dependency management is handled through [Poetry](https://python-poetry.org/):
6868

6969
```
7070
pip install poetry

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pybeerxml"
3-
version = "2.1.1"
3+
version = "2.1.2"
44
description = "A BeerXML implementation for Python"
55
authors = ["Tom Herold <heroldtom@gmail.com>"]
66
repository = "https://github.com/hotzenklotz/pybeerxml/"

0 commit comments

Comments
 (0)