Skip to content

Commit

Permalink
Prepare v1.9.0
Browse files Browse the repository at this point in the history
Update README with #22 pull request feature
Update contributors
  • Loading branch information
dpretet committed Oct 27, 2022
1 parent b2f4738 commit 8f03c39
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -141,3 +141,4 @@ share/python-wheels/
.installed.cfg
*.egg
MANIFEST
test/bats
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
Sebastian Schaetz <seb.schaetz@gmail.com>
Olof Kindgren
Evan Mays <@evanon0ping>
De hekkende krekker
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ suffix and run all tests available. Multiple suffix patterns are [possible](http

svutRun proposes several arguments, most optional:

- `-test`: specify the testsuite file path
- `-test`: specify the testsuite file path or a folder containing tests
- `-f`: pass the fileset description, default is `files.f`
- `-sim`: specify the simulator, `icarus` or `verilator`
- `-main`: specify the main.cpp file when using verilator, default is `sim_main.cpp`
Expand Down
25 changes: 25 additions & 0 deletions pypi.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# How To Release & Publish on Pypi


- Update ./setup.py and ./pyproject.toml with correct release number
- Update contributors in ./pyproject.toml and ./AUTHORS
- Prepare the tag and push the commits tagged
- Follow next intructions to build and publish the package

```bash

# Install the necessary tools
python -m pip install build twine

# Build the package
python3 -m build

# Check the package
twine check dist/*

# Upload to Pypi once registred
twine upload -r pypi dist/*
```


https://realpython.com/pypi-publish-python-package/#publish-your-package-to-pypi
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "svut"
version = "1.8.0"
version = "1.9.0"
authors = [
{ name="Damien Pretet", email="damien.pretet@me.com" },
{ name="Sarah Clark", email="sarahclark@google.com" },
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="svut",
version="1.6.1",
version="1.9.0",
description="SystemVerilog Unit Test (SVUT)",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 8f03c39

Please sign in to comment.