Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita835215

Browse files
authored
Update cookiecutter-hypermodern-python to 2021.4.15 (#352)
1 parent711dba6 commita835215

File tree

13 files changed

+45
-60
lines changed

13 files changed

+45
-60
lines changed

‎.cookiecutter.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"email":"mail@claudiojolowicz.com",
55
"friendly_name":"nox-poetry",
66
"github_user":"cjolowicz",
7+
"license":"MIT",
78
"package_name":"nox_poetry",
89
"project_name":"nox-poetry",
910
"version":"0.1.0"

‎.darglint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[darglint]
2-
strictness =short
2+
strictness =long

‎.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ max-line-length = 80
55
max-complexity = 10
66
docstring-convention = google
77
per-file-ignores = tests/*:S101
8-
rst-roles =const,class,func,meth,mod,ref
8+
rst-roles = class,const,func,meth,mod,ref
99
rst-directives = deprecated

‎.github/workflows/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pip==21.0.1
22
nox==2020.12.31
3-
poetry==1.1.5
3+
poetry==1.1.6
44
virtualenv==20.4.3

‎.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth:2
1818

1919
-name:Set up Python
20-
uses:actions/setup-python@v2.2.1
20+
uses:actions/setup-python@v2.2.2
2121
with:
2222
python-version:"3.9"
2323

‎.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses:actions/checkout@v2.3.4
3636

3737
-name:Set up Python ${{ matrix.python-version }}
38-
uses:actions/setup-python@v2.2.1
38+
uses:actions/setup-python@v2.2.2
3939
with:
4040
python-version:${{ matrix.python-version }}
4141

@@ -74,7 +74,7 @@ jobs:
7474
print("::set-output name=result::{}".format(result))
7575
7676
-name:Restore pre-commit cache
77-
uses:actions/cache@v2.1.4
77+
uses:actions/cache@v2.1.5
7878
if:matrix.session == 'pre-commit'
7979
with:
8080
path:~/.cache/pre-commit
@@ -88,14 +88,14 @@ jobs:
8888
8989
-name:Upload coverage data
9090
if:always() && matrix.session == 'tests'
91-
uses:"actions/upload-artifact@v2.2.2"
91+
uses:"actions/upload-artifact@v2.2.3"
9292
with:
9393
name:coverage-data
9494
path:".coverage.*"
9595

9696
-name:Upload documentation
9797
if:matrix.session == 'docs-build'
98-
uses:actions/upload-artifact@v2.2.2
98+
uses:actions/upload-artifact@v2.2.3
9999
with:
100100
name:docs
101101
path:docs/_build
@@ -108,7 +108,7 @@ jobs:
108108
uses:actions/checkout@v2.3.4
109109

110110
-name:Set up Python 3.9
111-
uses:actions/setup-python@v2.2.1
111+
uses:actions/setup-python@v2.2.2
112112
with:
113113
python-version:3.9
114114

@@ -132,7 +132,7 @@ jobs:
132132
pip install .
133133
134134
-name:Download coverage data
135-
uses:actions/download-artifact@v2.0.8
135+
uses:actions/download-artifact@v2.0.9
136136
with:
137137
name:coverage-data
138138

@@ -145,4 +145,4 @@ jobs:
145145
nox --force-color --session=coverage -- xml
146146
147147
-name:Upload coverage report
148-
uses:codecov/codecov-action@v1.3.1
148+
uses:codecov/codecov-action@v1.3.2

‎LICENSE.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22
===========
33

4-
Copyright ©2020 Claudio Jolowicz
4+
Copyright ©2021 Claudio Jolowicz
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

‎README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ License
164164
-------
165165

166166
``nox-poetry`` is free and open source software,
167-
distributed under the terms of theMIT_ license.
167+
distributed under the terms of the`MIT license`_.
168168

169169

170170
Issues
@@ -179,9 +179,9 @@ Credits
179179

180180
This project was generated from `@cjolowicz`_'s `Hypermodern Python Cookiecutter`_ template.
181181

182-
183182
.. _@cjolowicz:https://github.com/cjolowicz
184183
.. _Cookiecutter:https://github.com/audreyr/cookiecutter
184+
.. _MIT license:https://opensource.org/licenses/MIT
185185
.. _Hypermodern Python Cookiecutter:https://github.com/cjolowicz/cookiecutter-hypermodern-python
186186
.. _MIT:http://opensource.org/licenses/MIT
187187
.. _Nox:https://nox.thea.codes/

‎docs/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sphinx==3.5.3
2-
furo==2021.3.20b30
1+
sphinx==3.5.4
2+
furo==2021.2.28b28

‎mypy.ini

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,9 @@
11
[mypy]
2-
check_untyped_defs = True
3-
disallow_any_generics = True
4-
disallow_incomplete_defs = True
5-
disallow_subclassing_any = True
6-
disallow_untyped_calls = True
7-
disallow_untyped_decorators = True
8-
disallow_untyped_defs = True
9-
no_implicit_optional = True
10-
no_implicit_reexport = True
2+
strict = True
113
pretty = True
124
show_column_numbers = True
135
show_error_codes = True
146
show_error_context = True
15-
strict_equality = True
16-
warn_redundant_casts = True
17-
warn_return_any = True
18-
warn_unreachable = True
19-
warn_unused_configs = True
20-
warn_unused_ignores = True
217

228
[mypy-tomlkit]
239
ignore_missing_imports = True

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp