Skip to content

Commit

Permalink
update deps (#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyNikiforov authored Feb 10, 2023
1 parent fb539bc commit b34ad22
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python3 -m twine upload dist/*.whl
python3 -m twine upload --non-interactive --disable-progress-bar dist/*.whl
release:
needs: [get_version, build]
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
setuptools>=66.0.0,<67
twine>=2.0.0,<3
setuptools>=67.0.0,<68
twine>=4.0.0,<5
wheel>=0.38.4,<0.39
pyinstaller>=5.7.0,<6
2 changes: 1 addition & 1 deletion requirements-pip.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pip>=22.3.1,<23
pip>=23.0.0,<24
2 changes: 1 addition & 1 deletion scripts/install_deps
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -euo pipefail
pip3 install -r requirements-pip.txt
python3 -m pip install -r requirements-pip.txt
pip3 install -r requirements.txt -r requirements-test.txt -r requirements-dev.txt
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
license="MIT",
packages=find_packages(),
install_requires=required,
python_requires=">=3.7,<3.12",
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
Expand Down

0 comments on commit b34ad22

Please sign in to comment.