Skip to content

Commit

Permalink
Merge branch 'fix/fix_pyyaml_version_restrictions_v1.1' into 'release…
Browse files Browse the repository at this point in the history
…/v1.1'

fix: use 5.2 for python 3.4 and 2.7 (v1.1)

See merge request espressif/idf-component-manager!154
  • Loading branch information
kumekay committed Jun 30, 2022
2 parents ba14f31 + 5a21ac6 commit 04c4d51
Show file tree
Hide file tree
Showing 2 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
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed

- Loose the restrictions for pyyaml on python 2.7 and 3.4

## [1.1.3] 2022-06-21

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
'contextlib2>0.6.0;python_version>="3.6"',
'future',
'pathlib;python_version<"3.4"',
'pyyaml<5;python_version=="3.4.*"',
'pyyaml>=5;python_version>="3.5"',
'pyyaml>=5;python_version=="2.7.*"',
'pyyaml<=5.2;python_version=="3.4.*"',
'pyyaml>5.2;python_version>="3.5"',
'pyyaml<=5.2;python_version=="2.7.*"',
'requests<3',
'requests-toolbelt',
'schema',
Expand Down

0 comments on commit 04c4d51

Please sign in to comment.