-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/next'
- Loading branch information
Showing
14 changed files
with
76 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,11 +18,11 @@ jobs: | |
- name: Checkout out code | ||
uses: actions/checkout@v3 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.7 | ||
- name: Cache pip | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].8 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-linters.txt') }} | ||
|
@@ -47,11 +47,11 @@ jobs: | |
- name: Checkout out code | ||
uses: actions/checkout@v3 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.7 | ||
- name: Cache pip | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].8 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-linters.txt') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,11 @@ jobs: | |
- name: Checkout out code | ||
uses: actions/checkout@v3 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.7 | ||
- name: Cache pip | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].8 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-*.txt') }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
#!/bin/bash | ||
|
||
# This is the default .bash_profile in a container. | ||
|
||
# Get the aliases and functions | ||
if [ -f ~/.bashrc ]; then | ||
. ~/.bashrc | ||
# shellcheck disable=SC1090 | ||
source ~/.bashrc | ||
fi | ||
|
||
# Initial greeting | ||
cat /opt/src/arthur-redshift-etl/etc/motd | ||
|
||
echo -e "\nEnvironment settings:\n" | ||
arthur.py settings object_store.s3.* version | ||
echo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# NOTE When changing versions here, be sure to keep .pre-commit-config.yaml consistent! | ||
black==22.3.0 | ||
flake8==4.0.1 | ||
flake8-bugbear==22.4.25 | ||
flake8-comprehensions==3.7.0 | ||
black==22.8.0 | ||
flake8==5.0.4 | ||
flake8-bugbear==22.9.11 | ||
flake8-comprehensions==3.10.0 | ||
flake8-docstrings==1.6.0 | ||
flake8-fixme==1.1.1 | ||
isort==5.10.1 | ||
mypy==0.950 | ||
mypy-boto3~=1.22 | ||
mypy==0.971 | ||
mypy-boto3~=1.24 | ||
mypy-extensions==0.4.3 | ||
pre-commit==2.17.0 | ||
pyupgrade==2.31.0 | ||
types-PyYAML==6.0.7 | ||
types-setuptools==57.4.14 | ||
types-simplejson==3.17.6 | ||
types-tabulate==0.8.8 | ||
types-termcolor==1.1.4 | ||
types-PyYAML==6.0.11 | ||
types-setuptools==65.3.0 | ||
types-simplejson==3.17.7 | ||
types-tabulate==0.8.11 | ||
types-termcolor==1.1.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from setuptools import find_packages, setup | ||
|
||
ARTHUR_VERSION = "1.63.0" | ||
ARTHUR_VERSION = "1.64.0" | ||
|
||
|
||
setup( | ||
|