USW-Tax-Analyzer

Check-in [d46186d641]
Login

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

Overview
Comment:Release version 1.13.0
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | release | version-1.13.0
Files: files | file ages | folders
SHA3-256: d46186d64104f6bcad1d5195dd70ffb911c6085641938bde9148dae4517d4d7c
User & Date: mrh 2023-07-21 14:06:31
Context
2023-07-21
14:09
Update link to zip distribution file for 1.13.0 version. Leaf check-in: 39a73d576b user: mrh tags: trunk
14:06
Release version 1.13.0 check-in: d46186d641 user: mrh tags: release, trunk, version-1.13.0
2023-04-13
16:17
Update link to zip distribution file for 1.12.0 version. check-in: 994dafaf84 user: mrh tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to Makefile.

77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
rm -f tax-??-*
endef

# target: pytest
.PHONY=pytest
pytest: clean uswtaxanalyzer/calcfuncsfast.py
	@date
	@pytest -n4
	@$(pytest-cleanup)
	@$(tatest-cleanup)

# target: tatest
define tatest-cleanup
rm -f test.csv
rm -f test-??-*







|







77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
rm -f tax-??-*
endef

# target: pytest
.PHONY=pytest
pytest: clean uswtaxanalyzer/calcfuncsfast.py
	@date
	@pytest -n4 --disable-warnings
	@$(pytest-cleanup)
	@$(tatest-cleanup)

# target: tatest
define tatest-cleanup
rm -f test.csv
rm -f test-??-*

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 = 'uswtaxanalyzer'  # 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 = 'uswtaxanalyzer'  # 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 uswtaxanalyzer/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 = 'uswtaxanalyzer'  # specify all lower-case characters
        self.release_version = '1.12.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 = 'uswtaxanalyzer'  # specify all lower-case characters
        self.release_version = '1.13.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 www/change_log.md.

1
2






3
4
5
6
7
8
9
# Change Log #








<h3>Changes for Version 1.12 (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.13 (2023-07-21)</h3>

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


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

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