Skip to content

Commit cb03f06

Browse files
authored
Merge pull request #54 from isi-usc-edu/pylqt137
hotfix to include modified files
2 parents dfc6817 + 8e786a4 commit cb03f06

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ Change directory to the location of setup.py, then perform the following command
6767
- Create and activate the environment:
6868

6969
on Windows use:
70-
conda create -n <Environment Name> "python>=3.8,<=3.11.5"
70+
conda create -n <Environment Name> "python>=3.8,<=3.12.2"
7171
on Mac use:
72-
conda create -n <Environment Name> python'>=3.8,<=3.11.5'
72+
conda create -n <Environment Name> python'>=3.8,<=3.12.2'
7373

7474
conda activate <Environment Name>
7575

@@ -78,7 +78,7 @@ Change directory to the location of setup.py, then perform the following command
7878
pip install .
7979

8080
- If you are working as a developer (for all platforms and shells):
81-
81+
<a id="developer-install"></a>
8282
on Windows use:
8383
pip install -e .[dev]
8484
on Mac use:

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ pylint
1111
pytest
1212
pytest-cov
1313
pytest-pep8
14+
testbook # package used for testing Jupyter Notebooks
1415

1516
# Generating documentation
1617
nbsphinx

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ qualtran==0.4.0
1313
ipykernel
1414
numpy
1515
pandas
16-
scipy<1.13.0
16+
scipy
1717
matplotlib
1818
tqdm
1919
openfermion
@@ -24,5 +24,6 @@ networkx
2424
juliacall
2525
juliapkg
2626
rustworkx
27-
# Removed the following from the install because it is not yet available on Windows
28-
# openfermionpyscf
27+
pydot
28+
graphviz
29+
openfermionpyscf; sys_platform == 'linux'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_version(rel_path: str) -> str:
5353
author_email=AUTHOR_EMAIL,
5454
packages=find_packages(where="src"),
5555
package_dir={"": "src"},
56-
python_requires=">=3.8,<=3.12",
56+
python_requires=">=3.8,<=3.12.2",
5757
install_requires=REQUIREMENTS,
5858
extras_require={"dev": REQUIREMENTS_DEV},
5959
)

src/pyLIQTR/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.3.7"
1+
__version__ = "1.3.8"

0 commit comments

Comments
 (0)