-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
* add 3.12 to test matrix * fix typo * update metadata for 3.10+ * add scipy to dependencies * add cron * exclude openeye from 3.12 * move openeye install * switch to micromamba
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: openff-nagl-test | ||
channels: | ||
- openeye | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
# Base depends | ||
- python | ||
- pip | ||
|
||
# UI | ||
- click | ||
- click-option-group | ||
- tqdm | ||
- rich | ||
|
||
# chemistry | ||
- openff-recharge | ||
- openff-toolkit-base >=0.11.1 | ||
- openff-units | ||
- pydantic <3 | ||
- rdkit | ||
- scipy | ||
|
||
# database | ||
- pyarrow | ||
|
||
# gcn | ||
- pytorch >=2.0 | ||
- pytorch-lightning | ||
|
||
# parallelism | ||
- dask-jobqueue | ||
|
||
# Testing | ||
- pytest | ||
- pytest-cov | ||
- pytest-xdist | ||
- codecov | ||
|
||
# Pip-only installs | ||
- pip: | ||
- rich |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ dependencies: | |
- openff-units | ||
- pydantic <3 | ||
- rdkit | ||
- openeye-toolkits | ||
- scipy | ||
|
||
# database | ||
- pyarrow | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ | |
# Customize MANIFEST.in if the general case does not suit your needs | ||
# Comment out this line to prevent the files from being packaged with your software | ||
include_package_data=True, | ||
python_requires=">=3.8", # Python version restrictions | ||
python_requires=">=3.10", # Python version restrictions | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
lilyminium
Author
Collaborator
|
||
# Allows `setup.py test` to work correctly with pytest | ||
setup_requires=[] + pytest_runner, | ||
# Required packages, pulls from pip if needed | ||
|
@@ -51,7 +51,7 @@ | |
"tqdm", | ||
"openff-toolkit", | ||
"openff-units", | ||
"pydantic<2.0", | ||
"pydantic", | ||
"rdkit", | ||
], | ||
# Additional entries you may want simply uncomment the lines you want and fill in the data | ||
|
Would it be possible to change this to 3.9+? This prevents
pip install git+....@main
(No push to also test on 3.9)