Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply updates from cookiecutter #422

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .cookiecutter/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"__github_url": "https://github.com/hypothesis/report",
"__copyright_year": "2022",
"__postgres_port": "5436",
"__postgres_version": "11.5-alpine"
"__postgres_version": "11.5-alpine",
"__slack_notifications_workflows": ", Report refresh"
}
}
2 changes: 2 additions & 0 deletions .cookiecutter/includes/mypy/exclude/tail
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# The actual "data_task" run on a schedule are a nightmare for mypy
"report/data_tasks/report"
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build
/build
coverage
node_modules
yarn-error.log
Expand All @@ -11,3 +11,4 @@ supervisord.pid
.DS_Store
.devdata*
.eslintcache
*.tsbuildinfo
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ filterwarnings = [
"ignore:^pkg_resources is deprecated as an API:DeprecationWarning:pyramid",
"ignore:^Deprecated call to .pkg_resources\\.declare_namespace\\('.*'\\).\\.:DeprecationWarning:pkg_resources",
"ignore:^'cgi' is deprecated and slated for removal in Python 3\\.13$:DeprecationWarning:webob",
"ignore:^datetime\\.datetime\\.utcnow\\(\\) is deprecated and scheduled for removal in a future version\\.:DeprecationWarning",
]

[tool.pydocstyle]
Expand Down Expand Up @@ -148,8 +149,8 @@ disable_error_code = [
]

exclude = [
# The actual "data_task" run on a schedule are a nightmare for mypy
"report/data_tasks/report"
# The actual "data_task" run on a schedule are a nightmare for mypy
"report/data_tasks/report"
]

[[tool.mypy.overrides]]
Expand Down
Loading