-
Notifications
You must be signed in to change notification settings - Fork 933
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix CI * use dash * ignore test fixtures * Update python versions Follows https://devguide.python.org/versions/ * More python versions * typo * 3.13 container not found * Test with poetry * Add path * fix path * test only on 3.8 and 3.9 * Update CHANGELOG.md * Use nose-py3 * Update test.yaml * on PRs only
- Loading branch information
Showing
9 changed files
with
734 additions
and
23 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
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,18 @@ | ||
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 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 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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[tool.poetry] | ||
name = "mackup" | ||
version = "0.8.38" | ||
description = "Keep your application settings in sync (macOS/Linux)" | ||
authors = ["Laurent Raufaste <[email protected]>"] | ||
license = "GPLv3" | ||
readme = "README.md" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
docopt = "^0.6.2" | ||
six = "^1.16.0" | ||
|
||
[tool.poetry.group.dev] | ||
optional = true | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
nose-py3 = "^1.6.3" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry.scripts] | ||
mackup = "mackup.main:main" |