Skip to content

Commit

Permalink
fix: pyyaml deps bump (#1184)
Browse files Browse the repository at this point in the history
* fix: pyyaml deps bump

* fix: woups, forgot about this

* chore: add CHANGELOG to bump
  • Loading branch information
Sanix-Darker authored Jul 19, 2023
1 parent a7f4cc4 commit c56e827
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 38 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Fixed

- PyYaml: Fix broken dependency and bump it from 5.4.1 to >=6,<7

### [4.7.0] 2023-07-07

## Changed
Expand Down
81 changes: 46 additions & 35 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ facebook-sdk = {version = "^3.1.0", optional = true}
python-graphql-client = {version = ">=0.4.3,<1.0", optional = true}
google-api-python-client = {version = "^2", optional = true}
oauth2client = {version = "^4.1.3", optional = true}
googleads = {version = ">=32,<34", optional = true}
googleads = {version = ">=34,<35", optional = true}
google-cloud-bigquery = {version = ">=3,<4", extras = ["bqstorage", "pandas"], optional = true}
PyMySQL = {version = "^1.0.2", optional = true}
gspread = {version = "^5.4.0", optional = true}
Expand Down Expand Up @@ -83,7 +83,7 @@ pytest = "^7.4.0"
pytest-mock = "^3.11.1"
pytest-rerunfailures = "^12.0"
python-slugify = "<7"
PyYAML = "<6"
PyYAML = ">=6.0.1,<7"
responses = ">=0.21.0,<1"
psycopg2 = "^2.9.3"
xmltodict = ">=0.13.0,<1"
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def fin():
def service_container(unused_port, container_starter):
def f(service_name, checker_callable=None, skip_exception=None, timeout=60):
with open(f'{path.dirname(__file__)}/docker-compose.yml') as docker_comppse_yml:
docker_conf = yaml.load(docker_comppse_yml)
docker_conf = yaml.safe_load(docker_comppse_yml)
service_conf = docker_conf[service_name]
volumes = service_conf.get('volumes')
if volumes is not None:
Expand Down

0 comments on commit c56e827

Please sign in to comment.