Skip to content

Commit

Permalink
fix: use latest tag for psutil wheels URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
polischuks committed Feb 3, 2025
1 parent 0f995b8 commit 11e5dec
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ packages = [
[tool.poetry.dependencies]
python = "^3.10"
psutil = { version = "5.8.0", url = [
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp310-cp310-win_amd64.whl ; sys_platform == 'win32' and python_version == '3.10'",
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp311-cp311-win_amd64.whl ; sys_platform == 'win32' and python_version == '3.11'",
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp312-cp312-win_amd64.whl ; sys_platform == 'win32' and python_version == '3.12'",
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp310-cp310-manylinux2010_x86_64.whl ; sys_platform == 'linux' and python_version == '3.10'",
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp311-cp311-manylinux2010_x86_64.whl ; sys_platform == 'linux' and python_version == '3.11'",
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp312-cp312-manylinux2010_x86_64.whl ; sys_platform == 'linux' and python_version == '3.12'",
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp310-cp310-macosx_10_9_universal2.whl ; sys_platform == 'darwin' and python_version == '3.10'",
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp311-cp311-macosx_10_9_universal2.whl ; sys_platform == 'darwin' and python_version == '3.11'",
"https://github.com/hyperskill/hs-test-python/releases/download/v11.0.21/psutil-5.8.0-cp312-cp312-macosx_10_13_universal2.whl ; sys_platform == 'darwin' and python_version == '3.12'"
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp310-cp310-win_amd64.whl ; sys_platform == 'win32' and python_version == '3.10'",
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp311-cp311-win_amd64.whl ; sys_platform == 'win32' and python_version == '3.11'",
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp312-cp312-win_amd64.whl ; sys_platform == 'win32' and python_version == '3.12'",
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp310-cp310-manylinux2010_x86_64.whl ; sys_platform == 'linux' and python_version == '3.10'",
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp311-cp311-manylinux2010_x86_64.whl ; sys_platform == 'linux' and python_version == '3.11'",
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp312-cp312-manylinux2010_x86_64.whl ; sys_platform == 'linux' and python_version == '3.12'",
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp310-cp310-macosx_10_9_universal2.whl ; sys_platform == 'darwin' and python_version == '3.10'",
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp311-cp311-macosx_10_9_universal2.whl ; sys_platform == 'darwin' and python_version == '3.11'",
"https://github.com/hyperskill/hs-test-python/releases/latest/download/psutil-5.8.0-cp312-cp312-macosx_10_13_universal2.whl ; sys_platform == 'darwin' and python_version == '3.12'"
]}
mypy = "1.10.1"
pandas = "2.2.2"
Expand Down

0 comments on commit 11e5dec

Please sign in to comment.