Skip to content

Commit

Permalink
Merge pull request #91 from kjsanger/feature/dynamic-version-capture
Browse files Browse the repository at this point in the history
Move from setuptools_scm to setuptools-git-versioning
  • Loading branch information
kjsanger authored Mar 9, 2023
2 parents 3859438 + 81d2062 commit b6c9ee2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ ml-warehouse@https://github.com/wtsi-npg/ml-warehouse-python/releases/download/1
partisan@https://github.com/wtsi-npg/partisan/releases/download/2.1.0/partisan-2.1.0.tar.gz
rich==13.3.1
setuptools==67.5.1
setuptools_scm==7.1.0
setuptools-git-versioning==1.13.2
sqlalchemy==1.4.44
structlog==22.3.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
author="Keith James",
author_email="kdj@sanger.ac.uk",
description=".",
use_scm_version={"version_scheme": "no-guess-dev"},
python_requires=">=3.10",
packages=find_packages("src"),
package_dir={"": "src"},
setup_requires=["setuptools_scm"],
setup_requires=["setuptools-git-versioning"],
setuptools_git_versioning={"enabled": True},
install_requires=["ml-warehouse", "partisan", "rich", "sqlalchemy", "structlog"],
tests_require=["black", "pytest", "pytest-it"],
scripts=[
Expand Down

0 comments on commit b6c9ee2

Please sign in to comment.