forked from olofk/edalize
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
0.4.0 2022-07-12 Olof Kindgren | ||
====================================================== | ||
* New backends: OpenFPGA, VPR, Mistral, gatemate | ||
* symbiflow: Support Quicklogic | ||
* xsim: :Fix VHDL generics quotation | ||
* ISE: Added option to Specify JTAG chain index, fix windows path handling | ||
* verilator: Support EDALIZE_LAUNCHER, limit CPU usage | ||
* icestorm: Add icepack_options | ||
* el_docker: Run as user instead of root | ||
* vcs: Support boolean plusargs without value | ||
* yosys: Support verilog output | ||
* Flow API: Add get_tool_options function |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ def read(fname): | |
|
||
setup( | ||
name="edalize", | ||
version="0.3.3", | ||
version="0.4.0", | ||
packages=["edalize", "edalize.tools", "edalize.flows"], | ||
package_data={ | ||
"edalize": [ | ||
|
@@ -52,7 +52,7 @@ def read(fname): | |
author="Olof Kindgren", | ||
author_email="[email protected]", | ||
description=( | ||
"Edalize is a library for interfacing EDA tools, primarily for FPGA development" | ||
"Library for interfacing EDA tools such as simulators, linters or synthesis tools, using a common interface" | ||
), | ||
license="BSD-2-Clause", | ||
keywords=[ | ||
|
@@ -70,15 +70,12 @@ def read(fname): | |
url="https://github.com/olofk/edalize", | ||
long_description=read("README.rst"), | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: BSD License", | ||
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", | ||
"Topic :: Utilities", | ||
], | ||
install_requires=[ | ||
# 2.11.0 and .1 introduced an incompatible change in template output, | ||
# which was fixed in 2.11.2 and later. | ||
# https://github.com/pallets/jinja/issues/1138 | ||
"Jinja2>=3", | ||
], | ||
tests_require=["pytest>=3.3.0", "vunit_hdl>=4.0.8"], | ||
|