Browse Source

Use pypi version since wallento/cocotbext-wishbone#22 was fixed

master
T. Meissner 2 years ago
parent
commit
201ac4c6c2
4 changed files with 1 additions and 31 deletions
  1. +0
    -1
      docker-setup.sh
  2. +0
    -7
      env-setup.sh
  3. +1
    -0
      requirements.txt
  4. +0
    -23
      setup.py.patch

+ 0
- 1
docker-setup.sh View File

@ -1,4 +1,3 @@
#!/bin/bash
python3 -m pip install -r requirements.txt
python3 -m pip install cocotbext-wishbone/

+ 0
- 7
env-setup.sh View File

@ -1,7 +0,0 @@
#!/bin/bash
if [ ! -d cocotbext-wishbone/.git ]; then
git clone https://github.com/wallento/cocotbext-wishbone.git
cd cocotbext-wishbone && patch < ../setup.py.patch
cd ..
fi

+ 1
- 0
requirements.txt View File

@ -7,6 +7,7 @@ cocotbext-pcie
cocotbext-eth
cocotbext-uart
cocotbext-spi
cocotbext-wishbone
# verification libraries
cocotb-coverage


+ 0
- 23
setup.py.patch View File

@ -1,23 +0,0 @@
--- setup.py 2022-02-07 11:35:49.632921471 +0100
+++ setup.py.new 2022-02-07 11:40:11.084930778 +0100
@@ -5,19 +5,13 @@
setuptools.setup(
name="cocotbext-wishbone",
- use_scm_version={
- "relative_to": __file__,
- "write_to": "cocotbext/wishbone/version.py",
- },
+ version="0.2.1",
author="Staf Verhaegen, Mathias Kreider",
author_email="staf@stafverhaegen.be, m.kreider@gsi.de",
description="Cocotb Wishbone modules",
long_description=long_description,
packages=["cocotbext.wishbone"],
install_requires=['cocotb>=1.6.0', 'cocotb_bus'],
- setup_requires=[
- 'setuptools_scm',
- ],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",

Loading…
Cancel
Save