You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Downloading the package from PyPI should include the requirements.txt file as the included setup.py references this file and crashes without it.
Actual Behavior
When downloading the latest version (0.0.17) of the package from PyPI, there is no requirements.txt file included. I also checked 0.0.16 and found it missing from that package.
Steps to Reproduce
Download 0.0.17 package from PyPI
Extract using method of choice
Observe that the requirements.txt file is absent
Error Output
Traceback (most recent call last):
File "/home/.../src/ansible_specdoc-0.0.17/setup.py", line 31, in <module>
install_requires=requirements_path.read_text().splitlines(),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/pathlib.py", line 1027, in read_text
with self.open(mode='r', encoding=encoding, errors=errors) as f:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/pathlib.py", line 1013, in open
return io.open(self, mode, buffering, encoding, errors, newline)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
FileNotFoundError: [Errno 2] No such file or directory: '/home/.../src/ansible_specdoc-0.0.17/requirements.txt'
The text was updated successfully, but these errors were encountered:
@noUsernamesLef7 Also could you let me know what command you are running so that I can reproduce the error on my end too. I have a way of seeing that the requirements file does not exist but I am curious about the command that you are using
Expected Behavior
Downloading the package from PyPI should include the requirements.txt file as the included setup.py references this file and crashes without it.
Actual Behavior
When downloading the latest version (0.0.17) of the package from PyPI, there is no requirements.txt file included. I also checked 0.0.16 and found it missing from that package.
Steps to Reproduce
Error Output
The text was updated successfully, but these errors were encountered: