Skip to content

Commit

Permalink
use git --version in deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
iskandr committed Feb 27, 2024
1 parent 3de23e5 commit f57aed9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python3 -m pip install --upgrade build && \
python3 -m pip install --upgrade twine && \
rm -rf dist && \
python3 -m build && \
git --help && \
git --version && \
python3 -m twine upload dist/* && \
git tag "$(python3 pyensembl/version.py)" && \
git push --tags
1 change: 1 addition & 0 deletions pyensembl/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
from .ensembl_release import EnsemblRelease
from .ensembl_versions import MAX_ENSEMBL_RELEASE
from .genome import Genome
from .species import Species
from .version import __version__

logging.config.fileConfig(pkg_resources.resource_filename(__name__, "logging.conf"))
Expand Down

0 comments on commit f57aed9

Please sign in to comment.