Skip to content

Commit 1d3c2a8

Browse files
author
Jason Munro
authored
Change docs python version to 3.8 (materialsproject#590)
* Change docs python version to 3.8 * Add doc deps * Linting * Add mkdocs to test deps * Linting * Add proper extra doc reps * Fix doc reps * More docs dep fixing * Unpin doc reqs * Unpin jinja * Fix rebase * Add mkdocstrings to
1 parent b8e9416 commit 1d3c2a8

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

.github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
runs-on: ubuntu-latest
9999
strategy:
100100
matrix:
101-
python-version: ["3.9"]
101+
python-version: ["3.8"]
102102

103103
steps:
104104
- uses: actions/checkout@v3

emmet-api/setup.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33

44
setup(
55
name="emmet-api",
6-
use_scm_version={
7-
"root": "..",
8-
"relative_to": __file__,
9-
},
6+
use_scm_version={"root": "..", "relative_to": __file__},
107
setup_requires=["setuptools_scm"],
118
description="Emmet API Library",
129
author="The Materials Project",
@@ -22,7 +19,7 @@
2219
"maggma",
2320
"ddtrace",
2421
"setproctitle",
25-
"shapely"
22+
"shapely",
2623
],
2724
extras_require={
2825
"test": [

emmet-core/setup.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@
1111
author_email="[email protected]",
1212
url="https://github.com/materialsproject/emmet",
1313
packages=find_namespace_packages(include=["emmet.*"]),
14-
package_data={
15-
"emmet.core.vasp.calc_types": ["*.yaml"],
16-
"emmet.core.subtrates": ["*.json"],
17-
},
14+
package_data={"emmet.core.vasp.calc_types": ["*.yaml"], "emmet.core.subtrates": ["*.json"]},
1815
include_package_data=True,
1916
install_requires=[
2017
"pymatgen>=2021.3,<2023.0",

0 commit comments

Comments
 (0)