Skip to content

Commit

Permalink
Merge pull request #13 from bluesliverx/main
Browse files Browse the repository at this point in the history
No longer generate docker compose version 3 since it is deprecated
  • Loading branch information
jacobtruman authored Mar 28, 2023
2 parents 7abbedd + 97498b8 commit c44b13c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- '3.10'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -32,9 +32,8 @@ jobs:
- name: Test with pytest
run: pytest --junitxml=test-reports/test-results.xml
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action/composite@v1
# exclude this step for 3.6, since it fails due to a breaking change to EnricoMi/publish-unit-test-result-action
if: always() && matrix.python-version != '3.6'
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: test-reports/test-results.xml
check_name: "Test Results ${{ matrix.python-version }}"
Expand Down
1 change: 0 additions & 1 deletion pydc_control/docker_compose_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ def _generate_docker_compose(args: argparse.Namespace, dev_projects: List[Projec

# Write out base docker compose
docker_compose_data = {
'version': '3',
'networks': {
config.get_dc_network(): {
'external': True,
Expand Down

0 comments on commit c44b13c

Please sign in to comment.