A library that computes the ephemerides.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Makefile 505 B

il y a 3 ans
il y a 3 ans
il y a 3 ans
12345678910111213141516171819
  1. black:
  2. poetry run black kosmorrolib setup.py
  3. .PHONY: tests
  4. tests: doctests
  5. coverage-doctests:
  6. python3 -m poetry run coverage run tests.py
  7. coverage-report:
  8. python3 -m poetry run coverage report
  9. doctests:
  10. python3 -m poetry run python tests.py
  11. changelog:
  12. conventional-changelog -p angular -i CHANGELOG.md -s
  13. @echo -e "\e[32m✔\e[33m Changelog generated. Don't forget to update the version number before committing.\e[0m"
  14. @echo -e " When everything is good, finish the release with 'make tag'."