From 9581440244e6805dd2877b9744a396012541ee03 Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Tue, 29 Aug 2023 23:51:22 -0700 Subject: [PATCH 1/2] Update testing.yml --- .github/workflows/testing.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index bb507794..733a41b9 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 @@ -55,7 +55,7 @@ jobs: run: pytest --cov=jobflow --cov-report=xml - uses: codecov/codecov-action@v1 - if: matrix.python-version == '3.10' && github.repository == 'materialsproject/jobflow' + if: matrix.python-version == '3.11' && github.repository == 'materialsproject/jobflow' with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml @@ -71,7 +71,7 @@ jobs: - uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: '3.11' cache: pip cache-dependency-path: pyproject.toml From 138184983e7556a38f8209645a9db71b2ef784aa Mon Sep 17 00:00:00 2001 From: "Andrew S. Rosen" Date: Tue, 29 Aug 2023 23:52:47 -0700 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 077f5ffc..0b6ba35c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,12 +11,13 @@ license = { text = "modified BSD" } authors = [{ name = "Alex Ganose", email = "alexganose@gmail.com" }] dynamic = ["version"] classifiers = [ - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", "Intended Audience :: System Administrators", "Operating System :: OS Independent", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -30,7 +31,7 @@ dependencies = [ "maggma>=0.38.1", "monty>=2021.5.9", "networkx", - "pydantic", + "pydantic<2", "pydash", ]