-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.x' of https://github.com/ga4gh/cat-vrs into Issue-14
- Loading branch information
Showing
27 changed files
with
247 additions
and
499 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "submodules/vrs"] | ||
path = submodules/vrs | ||
url = https://github.com/ga4gh/vrs.git | ||
branch = 2.0-alpha | ||
branch = 2.x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
PYV:=3.12 | ||
VEDIR=venv/${PYV} | ||
|
||
############################################################################ | ||
#= SETUP, INSTALLATION, PACKAGING | ||
|
||
#=> venv: make a Python 3 virtual environment | ||
.PHONY: venv/% | ||
venv/%: | ||
python$* -m venv $@; \ | ||
source $@/bin/activate; \ | ||
python -m ensurepip --upgrade; \ | ||
pip install --upgrade pip setuptools | ||
|
||
#=> develop: install package in develop mode | ||
.PHONY: develop setup | ||
develop setup: | ||
pip install -r .requirements.txt | ||
|
||
#=> devready: create venv, install prerequisites, install pkg in develop mode | ||
.PHONY: devready | ||
devready: | ||
make ${VEDIR} && source ${VEDIR}/bin/activate && make develop | ||
@echo '#################################################################################' | ||
@echo '### Do not forget to `source ${VEDIR}/bin/activate` to use this environment ###' | ||
@echo '#################################################################################' | ||
|
||
############################################################################ | ||
#= TESTING | ||
# see test configuration in pyproject.toml | ||
|
||
#=> test: execute tests | ||
.PHONY: test | ||
test: | ||
pytest tests/ | ||
|
||
#=> doctest: execute documentation tests (requires extra data) | ||
.PHONY: doctest | ||
doctest: | ||
pytest tests/ --doctest-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../schema/catvrs/def |
This file was deleted.
Oops, something went wrong.
6 changes: 4 additions & 2 deletions
6
docs/source/releases/1.0.rst → docs/source/releases/index.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
1.0 | ||
!!! | ||
.. `Releases`: | ||
1.0 (pre-releases) | ||
!!!!!!!!!!!!!!!!!! | ||
|
||
1.0.0.04-2024.connect | ||
@@@@@@@@@@@@@@@@@@@@@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.