Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rye uv #47

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ jobs:
with:
python-version: "${{ matrix.python_version }}"
cache: "pip"
- run: pip install -r requirements-dev.lock
#- name: Remove Editable Install (hack)
# run: (Get-Content -Path "requirements-dev.lock") -notmatch "-e" | Set-Content -Path "requirements-dev.tmp"
# shell: pwsh
- run: pip install -r requirements-test.lock
- run: python run.py
- run: python -m build

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Discord = "https://discord.gg/shiguredo"
[tool.rye]
dev-dependencies = [
"nanobind>=1.8.0",
"setuptools>=69",
"setuptools>=69.1.0",
"build~=1.0.3",
"wheel~=0.42.0",
"auditwheel~=5.4.0",
Expand Down
18 changes: 16 additions & 2 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,32 @@
-e file:.
auditwheel==5.4.0
build==1.0.3
colorama==0.4.6
# via build
# via pytest
exceptiongroup==1.2.0
# via pytest
importlib-metadata==7.0.1
# via build
iniconfig==2.0.0
# via pytest
nanobind==1.8.0
packaging==23.2
# via build
# via pytest
pluggy==1.3.0
# via pytest
pyelftools==0.30
# via auditwheel
pyproject-hooks==1.0.0
# via build
pytest==8.0.0
ruff==0.1.14
tomli==2.0.1
# via build
# via pyproject-hooks
# via pytest
wheel==0.42.0
zipp==3.17.0
# The following packages are considered to be unsafe in a requirements file:
setuptools==69.0.3
# via importlib-metadata
setuptools==69.1.0
19 changes: 19 additions & 0 deletions requirements-test.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# memo https://github.com/shiguredo/sora-python-sdk/commit/92f781695f390c4aca4add318a59f2994ba2d761
-e file:.
auditwheel==5.4.0
build==1.0.3
exceptiongroup==1.2.0
importlib-metadata==7.0.1
iniconfig==2.0.0
nanobind==1.8.0
packaging==23.2
pluggy==1.3.0
pyelftools==0.30
pyproject-hooks==1.0.0
pytest==8.0.0
ruff==0.1.14
tomli==2.0.1
wheel==0.42.0
zipp==3.17.0
# The following packages are considered to be unsafe in a requirements file:
setuptools==69.0.3
Loading