Skip to content

Commit

Permalink
fix bootstrap & pathspec regex, update py versions (#30)
Browse files Browse the repository at this point in the history
* update py versions

* maybe it needs quotes

* update regex

* fix brew install, update unison-gitignore

* revert test
  • Loading branch information
lime-green authored Jan 1, 2023
1 parent a04a709 commit 0e3ac6f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: '${{ matrix.python-version }}'
- name: Install dependencies
run: |
make prepare-dev
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"boto3",
"sceptre>=2.5",
"click~=8.0",
"unison-gitignore>=1.0.0",
"unison-gitignore>=1.0.4",
"colorlog",
)
DEV_REQUIRES = (
Expand Down Expand Up @@ -56,10 +56,11 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down
4 changes: 2 additions & 2 deletions src/remote_docker_aws/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ def _bootstrap_instance(self, ssh_key_path: str):
&& "sudo sed -i -e '/GatewayPorts/ s/^.*$/GatewayPorts yes/' '/etc/ssh/sshd_config'"
&& sudo service sshd restart
&& /bin/bash -c '"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"'
&& eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
&& echo 'eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)' >> /home/ubuntu/.profile
&& brew install unison eugenmayer/dockersync/unox
&& eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
&& brew install unison
&& sudo cp "$(which unison)" /usr/local/bin/
&& sudo cp "$(which unison-fsmonitor)" /usr/local/bin/
"""
Expand Down

0 comments on commit 0e3ac6f

Please sign in to comment.