INI-Tax-Analyzer

Check-in [3410db686c]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Release version 1.3.0
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | release | version-1.3.0
Files: files | file ages | folders
SHA3-256: 3410db686ca72b8238ea584174c023821d709bdd549d8892b6d83d1a6209f24d
User & Date: mrh 2023-07-21 14:14:14
Context
2023-07-21
14:16
Update link to zip distribution file for 1.3.0 version. Leaf check-in: d4fddd3f2e user: mrh tags: trunk
14:14
Release version 1.3.0 check-in: 3410db686c user: mrh tags: release, trunk, version-1.3.0
2023-04-13
16:02
Update link to zip distribution file for 1.2.0 version. check-in: 0a851dbf6d user: mrh tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to Makefile.

90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.PHONY=pytest
PYTEST_DEPENDENCIES = clean \
                      initaxanalyzer/tax.csv \
                      initaxanalyzer/growth_factors.csv \
                      initaxanalyzer/calcfuncsfast.py
pytest: $(PYTEST_DEPENDENCIES)
	@date
	@pytest -n4
	@$(pytest-cleanup)

.PHONY=runtest
runtest: package
	@cd initaxanalyzer/runtests ; ./tests.sh ; cd ../..

# target: alltests







|







90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
.PHONY=pytest
PYTEST_DEPENDENCIES = clean \
                      initaxanalyzer/tax.csv \
                      initaxanalyzer/growth_factors.csv \
                      initaxanalyzer/calcfuncsfast.py
pytest: $(PYTEST_DEPENDENCIES)
	@date
	@pytest -n4 --disable-warnings
	@$(pytest-cleanup)

.PHONY=runtest
runtest: package
	@cd initaxanalyzer/runtests ; ./tests.sh ; cd ../..

# target: alltests

Changes to initaxanalyzer/package.py.

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 = 'initaxanalyzer'  # specify all lower-case characters
        self.release_version = '1.2.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)







|







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 = 'initaxanalyzer'  # specify all lower-case characters
        self.release_version = '1.3.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
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 = 'initaxanalyzer'  # must be same as full_name in package.py
PACKAGE_REQUIRES_LIST = ['taf>=4.27.0']


# >>>>> DO NOT CHANGE ANY STATEMENTS BELOW THIS LINE <<<<< #


PACKAGE_INFO = {}  # info from reading files in PACKAGE_NAME directory











|







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 = 'initaxanalyzer'  # 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 1.2 (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 1.3 (2023-07-21)</h3>

* Test model using Tax-Analyzer-Framework version 4.28.0, which is now
  required.


<h3>Changes for Version 1.2 (2023-04-13)</h3>

* Test model using Tax-Analyzer-Framework version 4.27.0, which is now
  required.