• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

mozilla_version/H15-Mar-2021-1,3611,053

LICENSEH A D15-Mar-202115.5 KiB364265

MANIFEST.inH A D15-Mar-2021191 97

PKG-INFOH A D15-Mar-2021523 1412

README.mdH A D15-Mar-20211 KiB2918

requirements.txt.inH A D15-Mar-202157 43

setup.cfgH A D15-Mar-202138 53

setup.pyH A D15-Mar-20211.2 KiB3930

README.md

1# mozilla-version
2
3[![Build Status](https://travis-ci.org/mozilla-releng/mozilla-version.svg?branch=master)](https://travis-ci.org/mozilla-releng/mozilla-version) [![Coverage Status](https://coveralls.io/repos/github/mozilla-releng/mozilla-version/badge.svg?branch=master)](https://coveralls.io/github/mozilla-releng/mozilla-version?branch=master)[![Documentation Status](https://readthedocs.org/projects/mozilla-version/badge/?version=latest)](https://mozilla-version.readthedocs.io/en/latest/?badge=latest)
4
5
6Process Firefox versions numbers. Tell whether they are valid or not, whether they are nightlies or regular releases, whether this version precedes that other.
7
8## Documentation
9
10https://mozilla-version.readthedocs.io/en/latest/
11
12## Get the code
13
14Just install it from pip:
15
16```sh
17pip install mozilla-version
18```
19
20
21## Hack on the code
22```sh
23virtualenv venv         # create the virtualenv in ./venv
24. venv/bin/activate    # activate it
25git clone https://github.com/mozilla-releng/mozilla-version
26cd mozilla-version
27pip install mozilla-version
28```
29