Skip to content
Snippets Groups Projects
Commit 08a07d48 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

fix missing conveyor requirements

parent 55a27e44
No related branches found
No related tags found
1 merge request!640fix missing conveyor requirements
Pipeline #3595 passed
Pipeline: workspaces

#3596

    ......@@ -25,6 +25,8 @@ from setuptools import find_packages, setup
    VERSION = open("conveyor/_version.py").readlines()[-1].split()[-1].strip("\"'")
    README = Path("README.md").read_text()
    requires = ["pycapo==0.3.1", "requests", "pex==2.1.41"]
    setup(
    name="ssa-" + Path().absolute().name,
    version=VERSION,
    ......@@ -34,7 +36,7 @@ setup(
    author_email="dms-ssa@nrao.edu",
    url="TBD",
    license="GPL",
    install_requires=["pex==2.1.41", "pycapo==0.3.1"],
    install_requires=requires,
    tests_require=["pytest>=5.4,<6.0", "pytest-resource-path"],
    keywords=[],
    packages=find_packages(),
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment