Skip to content

Commit 78aa7f8

Browse files
authored
improv: move away from monorepo due to change in direction (#36)
From now on, each Lambda Powertools for a given runtime should have its own repo * chore: move all files to root * docs: fix alignment
1 parent 3d6352e commit 78aa7f8

Some content is hidden

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

56 files changed

+445
-1051
lines changed

Diff for: python/.flake8 renamed to .flake8

File renamed without changes.

Diff for: .github/workflows/python.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
1-
name: Powertools Python
1+
name: Build
22

33
on:
44
pull_request:
55
branches:
66
- develop
77
- master
8-
paths:
9-
- "python/**"
108
push:
119
branches:
1210
- develop
1311
- master
14-
paths:
15-
- "python/**"
1612

1713
jobs:
1814
build:
1915
runs-on: ubuntu-latest
20-
defaults:
21-
run:
22-
working-directory: ./python/
2316
strategy:
2417
max-parallel: 4
2518
matrix:

Diff for: .github/workflows/python_docs.yml

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,16 @@
1-
name: Powertools Python Docs
1+
name: Docs
22

33
on:
44
pull_request:
55
branches:
66
- master
7-
paths:
8-
- "python/**"
97
push:
108
branches:
119
- master
12-
paths:
13-
- "python/**"
1410

1511
jobs:
1612
docs:
1713
runs-on: ubuntu-latest
18-
defaults:
19-
run:
20-
working-directory: ./python/
2114
steps:
2215
- uses: actions/checkout@v1
2316
- name: Set up Python
@@ -32,4 +25,4 @@ jobs:
3225
uses: peaceiris/actions-gh-pages@v3
3326
with:
3427
github_token: ${{ secrets.GITHUB_TOKEN }}
35-
publish_dir: python/docs/aws_lambda_powertools/
28+
publish_dir: docs/aws_lambda_powertools/

Diff for: .gitignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -291,5 +291,7 @@ $RECYCLE.BIN/
291291
# End of https://www.gitignore.io/api/osx,linux,python,windows,pycharm,visualstudiocode
292292

293293
# Misc
294-
test_report
295-
/.idea/*
294+
test_report
295+
wheelhouse
296+
docs
297+
/.idea/*

Diff for: python/MANIFEST.in renamed to MANIFEST.in

File renamed without changes.

Diff for: python/Makefile renamed to Makefile

File renamed without changes.

0 commit comments

Comments
 (0)