Skip to content

Commit d959486

Browse files
authored
Merge pull request #815 from biocommons/update-from-python-package
update pyproject.toml from most recent python-package Bypass rules based on prior approval from @korikuzma
2 parents 9b32a30 + 6828abb commit d959486

3 files changed

Lines changed: 18 additions & 7 deletions

File tree

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
*.bak
33
*.cover
44
*.egg
5+
*.egg-info
56
*.egg-info/
7+
*.enc
68
*.log
79
*.manifest
810
*.mo
@@ -11,6 +13,9 @@
1113
*.py.cover
1214
*.py[cod]
1315
*.py[codz]
16+
*.pyc
17+
*.pyo
18+
*.rej
1419
*.sage.py
1520
*.so
1621
*.spec
@@ -21,6 +26,7 @@
2126
.Python
2227
.abstra/
2328
.cache
29+
.claude
2430
.coverage
2531
.coverage.*
2632
.cursorignore
@@ -33,6 +39,7 @@
3339
.idea
3440
.installed.cfg
3541
.ipynb_checkpoints
42+
.keys
3643
.mypy_cache/
3744
.nox/
3845
.pdm-build/
@@ -105,6 +112,7 @@ profile_default/
105112
sdist/
106113
share/python-wheels/
107114
target/
115+
tmp/
108116
var/
109117
venv.bak/
110118
venv/

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2019 hgvs Contributors
189+
Copyright 2025 Contributors
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

pyproject.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dev = [
2222
"sphinxcontrib-fulltoc >= 1.1",
2323
"toml-sort",
2424
"tox-uv>=1.28",
25-
"vcrpy"
25+
"vcrpy",
2626
]
2727

2828
[project]
@@ -33,9 +33,9 @@ classifiers = [
3333
"Development Status :: 5 - Production/Stable",
3434
"Intended Audience :: Developers",
3535
"Programming Language :: Python :: 3",
36-
"Programming Language :: Python :: 3.11",
3736
"Programming Language :: Python :: 3.12",
3837
"Programming Language :: Python :: 3.13",
38+
"Programming Language :: Python :: 3.14",
3939
"Programming Language :: Python",
4040
"Topic :: Scientific/Engineering :: Bio-Informatics",
4141
"Topic :: Scientific/Engineering :: Medical Science Apps.",
@@ -74,8 +74,8 @@ align = ["uta-align~=0.3"]
7474

7575
[project.urls]
7676
Documentation = "https://hgvs.readthedocs.io/"
77-
Homepage = "https://github.com/biocommons/hgvs"
78-
Issues = "https://github.com/biocommons/hgvs/issues"
77+
Homepage = "https://github.com/biocommons/hgvs/"
78+
Issues = "https://github.com/biocommons/hgvs/issues/"
7979
Repository = "https://github.com/biocommons/hgvs/"
8080

8181
[tool.coverage]
@@ -166,7 +166,7 @@ testpaths = ["tests"]
166166
fix = true
167167
line-length = 100
168168
src = ["src", "tests"]
169-
target-version = "py39"
169+
target-version = "py313"
170170

171171
[tool.ruff.format]
172172
docstring-code-format = true
@@ -197,9 +197,12 @@ ignore = [
197197
"E117",
198198
"E501",
199199
"E731",
200+
"N801",
201+
"N802",
200202
"PLR0913",
203+
"RET504",
201204
"S321",
202-
"W191"
205+
"W191",
203206
]
204207
select = [
205208
"A", # https://docs.astral.sh/ruff/rules/#flake8-builtins-a

0 commit comments

Comments
 (0)