Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Release version 0.8.0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | release | version-0.8.0 |
Files: | files | file ages | folders |
SHA3-256: |
f7cd2a46cda11324ac3fafbf09790d00 |
User & Date: | mrh 2023-07-21 15:46:40 |
Context
2023-07-21
| ||
15:49 | Update link to zip distribution file for 0.8.0 version. Leaf check-in: 41bdaabc3a user: mrh tags: trunk | |
15:46 | Release version 0.8.0 check-in: f7cd2a46cd user: mrh tags: trunk, release, version-0.8.0 | |
2023-05-24
| ||
16:08 | Fix typo in the www/data_prep.md documentation. check-in: db1e18a279 user: mrh tags: trunk | |
Changes
Changes to Makefile.
︙ | ︙ | |||
95 96 97 98 99 100 101 | # target: pytest .PHONY=pytest PYTEST_DEPENDENCIES = etitaxanalyzer/pop.csv.gz \ etitaxanalyzer/growth_factors.csv \ etitaxanalyzer/calcfuncsfast.py pytest: clean $(PYTEST_DEPENDENCIES) @date | | | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | # target: pytest .PHONY=pytest PYTEST_DEPENDENCIES = etitaxanalyzer/pop.csv.gz \ etitaxanalyzer/growth_factors.csv \ etitaxanalyzer/calcfuncsfast.py pytest: clean $(PYTEST_DEPENDENCIES) @date @pytest -n4 --disable-warnings @$(pytest-cleanup) # target: runtest define runtest-cleanup rm -f test.csv rm -f test-??-* rm -f test-expect* |
︙ | ︙ |
Changes to etitaxanalyzer/package.py.
︙ | ︙ | |||
13 14 15 16 17 18 19 | # pylint: disable=too-few-public-methods __spec = {} def __init__(self): # edit the values of the following two Package attributes: self.full_name = 'etitaxanalyzer' # specify all lower-case characters | | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # pylint: disable=too-few-public-methods __spec = {} def __init__(self): # edit the values of the following two Package attributes: self.full_name = 'etitaxanalyzer' # specify all lower-case characters self.release_version = '0.8.0' # specify as in semantic versioning # do NOT change the following statements: self.name_prefix = self.full_name[:3] self.files_path = os.path.abspath(os.path.dirname(__file__)) if not self.__spec: self.__spec = json2dict('package.json', self.files_path, self.full_name) |
︙ | ︙ |
Changes to setup.py.
1 2 3 4 5 6 7 8 9 10 | """ Information used to make pip Python package with the following command: pip install . """ import os import re import setuptools PACKAGE_NAME = 'etitaxanalyzer' # must be same as full_name in package.py | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """ Information used to make pip Python package with the following command: pip install . """ import os import re import setuptools PACKAGE_NAME = 'etitaxanalyzer' # must be same as full_name in package.py PACKAGE_REQUIRES_LIST = ['taf>=4.28.0'] # >>>>> DO NOT CHANGE ANY STATEMENTS BELOW THIS LINE <<<<< # PACKAGE_INFO = {} # info from reading files in PACKAGE_NAME directory |
︙ | ︙ |
Changes to www/change_log.md.
1 2 3 4 5 6 7 8 9 | # Change Log # <h3>Changes for Version 0.7 (2023-04-13)</h3> * Test model using Tax-Analyzer-Framework version 4.27.0, which is now required. | > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Change Log # <h3>Changes for Version 0.8 (2023-04-13)</h3> * Test model using Tax-Analyzer-Framework version 4.28.0, which is now required. <h3>Changes for Version 0.7 (2023-04-13)</h3> * Test model using Tax-Analyzer-Framework version 4.27.0, which is now required. |
︙ | ︙ |