Skip to content

Commit

Permalink
chore: copier update
Browse files Browse the repository at this point in the history
  • Loading branch information
phil65 committed Nov 16, 2024
1 parent 96b6079 commit 50e56bc
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Changes here will be overwritten by Copier
_commit: v1.5.3
_commit: v1.6.0
_src_path: .\copier-phil65\
author_email: [email protected]
author_fullname: Philipp Temminghoff
author_username: phil65
copyright_date: '2024'
copyright_holder: Philipp Temminghoff
copyright_holder_email: [email protected]
libraries_use_pydantic: false
libraries_use_qt: false
project_description: Unified client for GitHub, GitLab and BitBucket
project_name: GitHarbor
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ jobs:
AZURE_TOKEN: ${{ secrets.AZURE_TOKEN }}

- name: Upload test results to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
verbose: true

Expand Down
29 changes: 24 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ build-backend = "hatchling.build"
[project]
name = "githarbor"
description = "Unified client for GitHub, GitLab and BitBucket"
authors = [{name = "Philipp Temminghoff", email = "[email protected]"}]
authors = [
{ name = "Philipp Temminghoff", email = "[email protected]" },
]
readme = "README.md"
dynamic = ["version"]
classifiers = [
Expand All @@ -30,8 +32,11 @@ classifiers = [
]
keywords = []
requires-python = ">=3.12"
dependencies = []
license = {file = "LICENSE"}
dependencies = [

# Only add below (Copier)
]
license = { file = "LICENSE" }

[project.optional-dependencies]
github = ["pygithub"]
Expand All @@ -53,14 +58,27 @@ all = [
default-groups = ["dev", "lint", "docs"]

[dependency-groups]
dev = ["pytest", "pytest-cov", "pyreadline3"]
dev = [
"pytest",
"pytest-cov",
"pyreadline3",
"devtools",
# Only add below (Copier)
]
benchmark = ["pyinstrument"]
lint = ["ruff", "mypy[faster-cache]"]
docs = ["mkdocs-mknodes", "mkdocs-material"]
docs = [
"mkdocs-mknodes",
"mkdocs-material",
# Only add below (Copier)
]

[project.urls]
Documentation = "https://phil65.github.io/githarbor/"
Source = "https://github.com/phil65/githarbor"
Issues = "https://github.com/phil65/githarbor/issues"
Discussions = "https://github.com/phil65/githarbor/discussions"
"Code coverage" = "https://app.codecov.io/gh/phil65/githarbor"

[tool.pytest.ini_options]
testpaths = "tests/"
Expand Down Expand Up @@ -90,6 +108,7 @@ disable_error_code = ["misc", "import"]
pretty = true
check_untyped_defs = true
exclude = ['venv/', '.venv/', 'tests/']
plugins = []

[tool.ruff]
line-length = 90
Expand Down

0 comments on commit 50e56bc

Please sign in to comment.