diff --git a/.python-version b/.python-version index 9ad6380..171a6a9 100644 --- a/.python-version +++ b/.python-version @@ -1 +1 @@ -3.8.18 +3.12.1 diff --git a/requirements-dev.lock b/requirements-dev.lock index 1cb3c0a..c03b3db 100644 --- a/requirements-dev.lock +++ b/requirements-dev.lock @@ -12,8 +12,6 @@ click==8.1.7 # via box coverage==7.4.1 # via pytest-cov -exceptiongroup==1.2.0 - # via pytest iniconfig==2.0.0 # via pytest packaging==23.2 @@ -26,8 +24,5 @@ pytest==8.0.0 pytest-cov==4.1.0 pytest-mock==3.12.0 ruff==0.1.15 -tomli==2.0.1 - # via coverage - # via pytest tomlkit==0.12.3 # via box diff --git a/tests/func/test_packager.py b/tests/func/test_packager.py index 13cc073..90cf03d 100644 --- a/tests/func/test_packager.py +++ b/tests/func/test_packager.py @@ -215,6 +215,8 @@ def test_set_env(rye_project): packager.build() packager._set_env() + print(os.environ) + print(rye_project.joinpath("dist").glob("*")) dist_file = rye_project.joinpath(f"dist/{rye_project.name}-0.1.0.tar.gz") package_name = rye_project.name.replace("-", "_")