Skip to content

Commit f1fc3d4

Browse files
authored
v0.3.4
2 parents 49c9fde + b66ebc3 commit f1fc3d4

File tree

10 files changed

+53
-61
lines changed

10 files changed

+53
-61
lines changed

.github/workflows/Pipeline.yml

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Pipeline
33
on:
44
push:
55
workflow_dispatch:
6+
schedule:
7+
- cron: '0 0 * * 5'
68

79
jobs:
810

@@ -109,6 +111,7 @@ jobs:
109111
needs:
110112
- Params
111113
- UnitTesting
114+
- PublishTestResults
112115
- Coverage
113116
- StaticTypeCheck
114117
- BuildTheDocs

.gitignore

+7-9
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,18 @@ __pycache__/
88
coverage.xml
99

1010
# setuptools
11-
/build/**/*.*
12-
/dist/**/*.*
11+
/build/
12+
/dist/
1313
/*.egg-info
1414

1515
# Dependencies
1616
!requirements.txt
1717

1818
# Sphinx
19-
doc/_build/
20-
doc/pySystemVerilogModel/**/*.*
21-
!doc/pySystemVerilogModel/index.rst
19+
/doc/_build/
20+
/doc/_theme/
21+
/doc/pySVModel/**/*.*
22+
!/doc/pySVModel/index.rst
2223

23-
# BuildTheDocs
24-
doc/_theme/**/*.*
25-
26-
# IntelliJ project files
24+
# PyCharm project files
2725
/.idea/workspace.xml

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"files.trimTrailingWhitespace": false,
3+
}

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
An abstract language model of SystemVerilog (incl. Verilog) written in Python.
2626

2727

28-
## Main Goals
28+
# Main Goals
2929

3030
This package provides a unified abstract language model for SystemVerilog (incl. Verilog).
3131
Projects reading from source files can derive own classes and implement additional logic to create a concrete language
@@ -35,33 +35,33 @@ Projects consuming pre-processed System Verilog data (parsed, analyzed or elabor
3535
and services on such a model, while supporting multiple frontends.
3636

3737

38-
## Use Cases
38+
# Use Cases
3939

40-
### pySVModel Generators
40+
## pySVModel Generators
4141

4242
* See [#11: Interfacing Surelog/UHDM](https://GitHub.com/edaa-org/pySVModel/issues/11)
4343

4444
*TBD*
4545

46-
### pySVModel Consumers
46+
## pySVModel Consumers
4747

4848
* [Electronic Design Automation Abstraction (EDA²)](https://edaa-org.github.io/)
4949

5050
*TBD*
5151

52-
## Examples
52+
# Examples
5353

54-
### List all Modules with Parameters and Ports
54+
## List all Modules with Parameters and Ports
5555

5656
*TBD*
5757

58-
## Contributors
58+
# Contributors
5959

6060
* [Patrick Lehmann](https://GitHub.com/Paebbels) (Maintainer)
6161
* [Unai Martinez-Corral](https://GitHub.com/umarcor)
6262
* [and more...](https://GitHub.com/edaa-org/pySVModel/graphs/contributors)
6363

64-
## License
64+
# License
6565

6666
This Python package (source code) licensed under [Apache License 2.0](LICENSE.md).
6767
The accompanying documentation is licensed under [Creative Commons - Attribution 4.0 (CC-BY 4.0)](doc/Doc-License.rst).

doc/Makefile

+2-19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
CP=cp
2-
3-
# Sphinx options.
41
SPHINXOPTS =
52
SPHINXBUILD = sphinx-build
63
PAPER =
@@ -10,19 +7,5 @@ PAPEROPT_a4 = -D latex_paper_size=a4
107
PAPEROPT_letter = -D latex_paper_size=letter
118
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees -T -D language=en $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
129

13-
all: html latex
14-
15-
#---
16-
17-
man:
18-
$(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
19-
20-
#---
21-
22-
html:
23-
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
24-
25-
#---
26-
27-
latex:
28-
$(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
10+
%:
11+
$(SPHINXBUILD) -b $@ $(ALLSPHINXOPTS) $(BUILDDIR)/$@

pySVModel/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
__email__ = "[email protected]"
4646
__copyright__ = "2021-2021, Patrick Lehmann"
4747
__license__ = "Apache License, Version 2.0"
48-
__version__ = "0.3.3"
48+
__version__ = "0.3.4"
4949

5050

5151
@export

pyproject.toml

+26
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,29 @@ build-backend = "setuptools.build_meta"
88

99
[tool.black]
1010
line-length = 120
11+
12+
[tool.pytest.ini_options]
13+
# Don't set 'python_classes = *' otherwise, pytest doesn't search for classes
14+
# derived from unittest.Testcase
15+
python_files = "*"
16+
python_functions = "test_*"
17+
18+
[tool.coverage.run]
19+
branch = true
20+
omit = [
21+
"*site-packages*",
22+
"setup.py"
23+
]
24+
25+
[tool.coverage.report]
26+
skip_covered = true
27+
skip_empty = true
28+
exclude_lines = [
29+
"raise NotImplementedError"
30+
]
31+
32+
[tool.coverage.html]
33+
directory = "report/coverage/html"
34+
35+
[tool.coverage.xml]
36+
output = "report/coverage/coverage.xml"

setup.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# ============================================================================
3131
#
3232
from pathlib import Path
33-
from pyTooling.Packaging import DescribePythonPackageHostedOnGitHub
33+
from pyTooling.Packaging import DescribePythonPackageHostedOnGitHub, DEFAULT_CLASSIFIERS
3434

3535
gitHubNamespace = "edaa-org"
3636
packageName = "pySVModel"
@@ -44,13 +44,9 @@
4444
keywords="Python3 Verilog SystemVerilog Language Model Abstract",
4545
sourceFileWithVersion=packageInformationFile,
4646
developmentStatus="beta",
47-
classifiers=[
48-
"Operating System :: OS Independent",
49-
"Intended Audience :: Developers",
50-
"Topic :: Utilities",
47+
classifiers=list(DEFAULT_CLASSIFIERS) + [
5148
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
5249
"Topic :: Software Development :: Code Generators",
53-
"Topic :: Software Development :: Compilers",
54-
"Topic :: Utilities"
50+
"Topic :: Software Development :: Compilers"
5551
]
5652
)

tests/.coveragerc

-12
This file was deleted.

tests/pytest.ini

-5
This file was deleted.

0 commit comments

Comments
 (0)