Skip to content

Commit

Permalink
Removes version constraint for lxml (#738)
Browse files Browse the repository at this point in the history
* Removes the fixed version for lxml and sets 1.5.0 as the minimum python3-saml version
* Adds explicit command for installing lxml using the no-binary flag
* Adds missing `--force-reinstall` flag to tox.ini

Fixes #659

Co-authored-by: Michal Čihař <[email protected]>
  • Loading branch information
duck-nukem and nijel authored Jan 6, 2023
1 parent bcf8282 commit a55a652
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed
- Updated `user_data` method in `StripeOAuth2` to return `email` in `get_user_details`
- Removes fixed version of `lxml`


## [4.3.0](https://github.com/python-social-auth/social-core/releases/tag/4.3.0) - 2022-06-13
Expand Down
3 changes: 1 addition & 2 deletions requirements-saml.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
python3-saml>=1.2.1
lxml<4.7
python3-saml>=1.5.0
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ deps =
py{36,37,38,39,310}: -rsocial_core/tests/requirements.txt
commands =
py{36,37,38,39,310}: pip install -e .[all]
py{36,37,38,39,310}: pip install --force-reinstall --no-binary lxml lxml
pytest {posargs:-v --cov=social_core}

0 comments on commit a55a652

Please sign in to comment.