Skip to content

Commit

Permalink
Try pinning dynaconf to 3.1.x
Browse files Browse the repository at this point in the history
No-Issue

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner committed Aug 11, 2023
1 parent 0eac356 commit dd5115b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions profiles/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ WORKDIR /opt/galaxy_ng/
RUN switch_python 3.11

# preinstall galaxy_ng in thebase image
RUN pip3.11 install .
RUN python3.11 -m pip install .

# set up venv for integration tests
RUN pip3.11 install virtualenv && python3.11 -m venv /tmp/gng_testing
RUN python3.11 -m pip install virtualenv && python3.11 -m venv /tmp/gng_testing
RUN bash profiles/base/setup_venv.sh

WORKDIR /
1 change: 1 addition & 0 deletions profiles/base/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ services:
localhost: "host-gateway"
environment:
- PULP_WORKERS=1
#- LOCK_REQUIREMENTS=0
depends_on:
- _galaxy_base
2 changes: 1 addition & 1 deletion requirements/requirements.common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ pulp-container==2.15.1
# via galaxy-ng (setup.py)
pulp-glue==0.19.1
# via pulpcore
pulpcore @ git+https://github.com/pulp/pulpcore@3.28
pulpcore==3.28.10
# via
# galaxy-ng (setup.py)
# pulp-ansible
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.insights.txt
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ pulp-container==2.15.1
# via galaxy-ng (setup.py)
pulp-glue==0.19.1
# via pulpcore
pulpcore @ git+https://github.com/pulp/pulpcore@3.28
pulpcore==3.28.10
# via
# galaxy-ng (setup.py)
# pulp-ansible
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements.standalone.txt
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ pulp-container==2.15.1
# via galaxy-ng (setup.py)
pulp-glue==0.19.1
# via pulpcore
pulpcore @ git+https://github.com/pulp/pulpcore@3.28
pulpcore==3.28.10
# via
# galaxy-ng (setup.py)
# pulp-ansible
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ def _format_pulp_requirement(plugin, specifier=None, ref=None, gh_namespace="pul

requirements = [
"galaxy-importer>=0.4.11,<0.5.0",
# "pulpcore>=3.28.10,<3.40.0",
"pulpcore @ git+https://github.com/pulp/[email protected]#egg=pulpcore",
"pulpcore>=3.28.10,<3.40.0",
# "pulpcore @ git+https://github.com/pulp/[email protected]#egg=pulpcore",
"pulp_ansible>=0.19.0,<0.20.0",
"django-prometheus>=2.0.0",
"drf-spectacular",
"pulp-container>=2.15.0,<2.17.0",
"social-auth-core>=4.4.2",
"social-auth-app-django>=5.2.0",
"dynaconf>=3.1.12",
"dynaconf>=3.1.12,<3.1.13",
"django-auth-ldap==4.0.0",
"insights_analytics_collector>=0.3.0",
"boto3",
Expand Down

0 comments on commit dd5115b

Please sign in to comment.