-
Notifications
You must be signed in to change notification settings - Fork 936
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dependabot/pip/cryptography-41.0.3
- Loading branch information
Showing
21 changed files
with
753 additions
and
589 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,20 @@ | ||
name: Test installs | ||
on: | ||
- pull_request | ||
- push | ||
on: pull_request | ||
|
||
jobs: | ||
|
||
install: | ||
strategy: | ||
matrix: | ||
python-version: | ||
- "2.7" | ||
- "3.6" | ||
- "3.7" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
runs-on: ubuntu-latest | ||
container: python:${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: python setup.py install | ||
- run: pip install . | ||
- run: mackup --help |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
MD004: | ||
style: "dash" |
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,23 +1,19 @@ | ||
develop: | ||
pipenv run python setup.py develop | ||
|
||
undevelop: | ||
pipenv run python setup.py develop --uninstall | ||
|
||
lint: | ||
# Install mdl with "gem install mdl" | ||
mdl . | ||
|
||
test: | ||
pipenv run nosetests --with-coverage --cover-tests --cover-inclusive --cover-branches --cover-package=mackup | ||
poetry install --with dev | ||
poetry run nosetests --with-coverage --cover-branches --cover-package=mackup | ||
|
||
clean: | ||
rm -rf __pycache__ | ||
rm -rf dist/ | ||
rm -rf Mackup.egg-info/ | ||
|
||
release: clean | ||
pipenv run python setup.py sdist | ||
pipenv run twine upload dist/* | ||
poetry build | ||
poetry publish | ||
|
||
black: | ||
black --target-version py310 . |
This file was deleted.
Oops, something went wrong.
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,9 +1,10 @@ | ||
# Release | ||
|
||
1. Move all the WIP changes under a new version in the [changelog](../CHANGELOG.md) | ||
2. Increment the version in [constants.py](../mackup/constants.py) | ||
3. `git commit` with the message `Mackup X.Y.Z` | ||
4. `git tag <version>` | ||
5. `git push` | ||
6. `git push --tags` | ||
7. `make release` | ||
1. Increment the version in [constants.py](../mackup/constants.py) | ||
1. Increment the version in [pyproject.toml](../pyproject.toml) | ||
1. `git commit` with the message `Mackup X.Y.Z` | ||
1. `git tag <version>` | ||
1. `git push` | ||
1. `git push --tags` | ||
1. `make release` |
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 |
---|---|---|
|
@@ -3,3 +3,4 @@ name = Homebrew | |
|
||
[configuration_files] | ||
.Brewfile | ||
Brewfile |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.