Skip to content

Commit 8bd55a4

Browse files
authored
Merge pull request #272 from ncilfone/new_types
New Types + Variable Resolver
2 parents e1b5641 + 9bb6975 commit 8bd55a4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+3153
-896
lines changed

.github/workflows/python-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-18.04
1515

1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/python-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
deploy:
1212

13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-18.04
1414

1515
steps:
1616
- uses: actions/checkout@v2

.github/workflows/python-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
run_lint:
1414

15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-18.04
1616

1717
steps:
1818
- uses: actions/checkout@v2

.github/workflows/python-manual-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on: workflow_dispatch
77
jobs:
88
deploy:
99

10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-18.04
1111

1212
steps:
1313
- uses: actions/checkout@v2

.github/workflows/python-publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
deploy:
1313

14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-18.04
1515

1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/python-pytest-s3.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-18.04
1515
strategy:
1616
matrix:
1717
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]

.github/workflows/python-pytest-tune.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-18.04
1515
strategy:
1616
matrix:
1717
python-version: ["3.7", "3.8", "3.9", "3.10"]

.github/workflows/python-pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-18.04
1515
strategy:
1616
matrix:
1717
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]

.github/workflows/python-test-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
deploy:
1717

18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-18.04
1919
steps:
2020
- uses: actions/checkout@v2
2121

.pre-commit-config.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
repos:
2+
- repo: https://github.com/psf/black
3+
rev: 22.10.0
4+
hooks:
5+
- id: black
6+
name: black (python)
7+
language_version: python3.10
8+
- repo: https://github.com/pycqa/isort
9+
rev: 5.10.1
10+
hooks:
11+
- id: isort
12+
name: isort (python)
13+
language_version: python3.10

0 commit comments

Comments
 (0)