Skip to content

Commit

Permalink
Explicitly set pyqt5-qt5 version on Pipfile, update PyQt5
Browse files Browse the repository at this point in the history
PyQt5 was updated due to a security release concerning a recent cURL
vulnerability. Similarly, pyqt5-qt5 offered a similar patch with
distribution only for macOS. Since the Pipfile had been locked on that
platform, this would lead to the Pipfile.lock not being valid on other
platforms, even when pip expected it to.
Similarly, the PyQt5 version was also bumped in pyproject.toml
  • Loading branch information
sanjacob committed Nov 10, 2023
1 parent 63ae0f9 commit 41859a2
Show file tree
Hide file tree
Showing 4 changed files with 163 additions and 23 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- The app will now catch API validation issues and inform the user about them
- Updated PyInstaller version which brings improvements for packaging on macOS

### Fixed
- Improve Blackboard API data validation (@cainanmahar)
- PyQt5 has been updated due to a security issue

## [0.10.0] - 2023-10-05

Expand Down
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ requests = "==2.31.0"
lxml = "==4.9.3"
appdirs = "==1.4.4"
python-dateutil = "==2.8.2"
pyqt5 = "==5.15.9"
pyqt5 = "==5.15.10"
pyqt5-qt5 = ">=5.15.2"
setuptools = "==68.0.0"
pathvalidate = "==3.1.0"
pydantic = "==2.1.1"
Expand Down
Loading

0 comments on commit 41859a2

Please sign in to comment.