Skip to content

Commit

Permalink
Bump pyyaml dependency from 5.3.1 to 5.4.1
Browse files Browse the repository at this point in the history
This change also makes the absolute dependency on pyyaml a minimum
version constaint for better compatibility with other pip-packages.

fixes  spreaker#39
  • Loading branch information
ndavidson-pulse committed Oct 5, 2021
1 parent 9f6c5b5 commit 4bba2c2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### 2.1.2 (2021-10-08)

- Upgraded dependencies
- `pyyaml` to 5.4.1 also changed fixed version to minimum version
constraint.

### 2.1.1 (2020-07-14)

- Upgraded dependencies
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ psycopg2==2.8.5
prometheus_client==0.8.0
python-json-logger==0.1.11
pycodestyle
PyYAML==5.3.1
PyYAML>=5.4.1
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
setup(
name = 'prometheus-pgbouncer-exporter',
packages = ['prometheus_pgbouncer_exporter'],
version = '2.1.1',
version = '2.1.2',
description = 'Prometheus exporter for PgBouncer',
long_description = long_description,
long_description_content_type = "text/markdown",
Expand All @@ -22,7 +22,7 @@
keywords = ['prometheus', 'pgbouncer'],
classifiers = [],
python_requires = ' >= 3',
install_requires = ['psycopg2 == 2.8.5', 'prometheus_client==0.8.0', 'python-json-logger==0.1.11', 'PyYAML==5.3.1'],
install_requires = ['psycopg2 == 2.8.5', 'prometheus_client==0.8.0', 'python-json-logger==0.1.11', 'PyYAML>=5.4.1'],
entry_points = {
'console_scripts': [
'pgbouncer-exporter=prometheus_pgbouncer_exporter.cli:main',
Expand Down

0 comments on commit 4bba2c2

Please sign in to comment.