Skip to content

Commit

Permalink
upgrade wheel and setuptools (#1073)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Jan 4, 2023
1 parent 792916e commit 5fc4f93
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: actions/checkout@v2
- name: Install project Python dependencies
run: |
pip install wheel==0.37.1
pip install "wheel>=0.38.4, <0.39"
pip install -r requirements/local.txt
pip install -r requirements/test.txt
- name: Download icons
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ before_script:
- python3 -m venv ./env
- source ./env/bin/activate
# - sh ./utility/install_python_dependencies.sh
- pip3 install wheel==0.37.1
- pip3 install "wheel>=0.38.4, <0.39"
- pip3 install -r ./requirements/local.txt
- pip3 install -r ./requirements/test.txt

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Changed

- **General**
- Upgrade minimum Django version to v3.2.16 (#1035)
- Upgrade Python dependencies (#1073)

Fixed
-----
Expand Down
4 changes: 2 additions & 2 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Wheel
wheel==0.37.1
wheel>=0.38.4, <0.39

# Setuptools
setuptools==65.3.0
setuptools>=65.6.3, <65.7

# Django
django>=3.2.16, <3.3
Expand Down
2 changes: 1 addition & 1 deletion utility/install_python_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if [ -z "$VIRTUAL_ENV" ]; then
echo >&2 -e "\n"
exit 1;
else
pip install wheel==0.37.1
pip install "wheel>=0.38.4, <0.39"
pip install -r $PROJECT_DIR/requirements/local.txt
pip install -r $PROJECT_DIR/requirements/test.txt
pip install -r $PROJECT_DIR/requirements.txt
Expand Down

0 comments on commit 5fc4f93

Please sign in to comment.