Browse Source

build: fix some variables in __version__.py (#13)

BREAKING CHANGE: `__build__` constant in `__version__.py` has been removed.
tags/v0.11.0
Jérôme Deuchnord 3 years ago
committed by Jérôme Deuchnord
parent
commit
9347d0cbed
2 changed files with 4 additions and 4 deletions
  1. +2
    -1
      .coveragerc
  2. +2
    -3
      kosmorrolib/__version__.py

+ 2
- 1
.coveragerc View File

@@ -1,6 +1,7 @@
[run]
branch = true
source =
kosmorrolib
kosmorrolib/*
omit =
kosmorrolib/__version__.py
tests/*

+ 2
- 3
kosmorrolib/__version__.py View File

@@ -4,8 +4,7 @@ __title__ = "kosmorrolib"
__description__ = "A library that computes your ephemerides"
__url__ = "http://kosmorro.space"
__version__ = "0.10.0"
__build__ = 0x000900
__author__ = "Jérôme Deuchnord"
__author_email__ = "jerome@deuchnord.fr"
__license__ = "AGPL"
__copyright__ = "Copyright 2021 Jérôme Deuchnord"
__license__ = "CeCILL-C"
__copyright__ = "2021 - Jérôme Deuchnord"

Loading…
Cancel
Save