Skip to content

Commit

Permalink
Setup issues
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Sep 8, 2024
1 parent f301969 commit 1aee096
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ The short version is, to install the OpenLane environment...
1. [Get Docker](https://docs.docker.com/get-docker/) (or a compatible container engine)
* On Ubuntu, follow the [Docker post install instructions](https://docs.docker.com/engine/install/linux-postinstall/) after you install Docker.
2. Get a version between Python 3.6 and Python 3.10: ([macOS](https://formulae.brew.sh/formula/python3) | [Ubuntu](https://packages.ubuntu.com/focal/python3))
2. Get Python 3.6 or higher: ([macOS](https://formulae.brew.sh/formula/python3) | [Ubuntu](https://packages.ubuntu.com/focal/python3))
* On Ubuntu, you may also need to install venv: `apt-get install python3-venv`, and pip: `apt-get install python3-pip`.
3. Get git ([macOS](https://formulae.brew.sh/formula/git) | [Ubuntu](https://packages.ubuntu.com/focal/git))
4. Get GNU Make ([macOS](https://formulae.brew.sh/formula/make) | [Ubuntu](https://packages.ubuntu.com/focal/make))
Expand Down
2 changes: 1 addition & 1 deletion dependencies/get_tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_tag() -> str:

branch_name = branch_name_data.stdout.decode("utf8").strip()
if branch_name not in ["", "HEAD"]:
if branch_name not in ["main", "master"]:
if branch_name not in ["main", "master", "superstable"]:
return canon(f"{branch_name}-dev")

process_data: subprocess.CompletedProcess = subprocess.run(
Expand Down
18 changes: 13 additions & 5 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
furo==2022.6.21
docutils==0.17
sphinx==4.5.0
sphinx-autobuild==2021.3.14
myst-parser==0.18.0
furo==2023.8.19
docutils>=0.17,<1
sphinx>=7.2.2
sphinx-autobuild>=2021.3.14
sphinx-autodoc-typehints>=1.24.0
sphinx-design>=0.5.0,<1
myst-parser>=2.0.0,<3
docstring-parser>=0.15,<1
sphinx-tippy>=0.4.1,<1
sphinx-copybutton>=0.5.2,<1
sphinxcontrib-spelling>=8.0.0,<9
sphinxcontrib-bibtex>=2.6.0,<3
sphinx-subfigure>=0.2.4,<1
7 changes: 5 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
-r ./dependencies/python/precompile_time.txt
-r ./dependencies/python/run_time.txt
pip
wheel
volare
click>=8.0.0,<9
pyyaml>=6.0.0,<7
5 changes: 3 additions & 2 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-r ./dependencies/python/compile_time.txt
-r ./requirements.txt
-r ./requirements_lint.txt
black~=22.3.0
flake8~=4.0.1
flake8-no-implicit-concat==0.3.3

0 comments on commit 1aee096

Please sign in to comment.