From f4fc0bbbd189dd39c3285fdc41bf72e4522a453e Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sat, 7 Dec 2024 10:51:45 -0500 Subject: [PATCH] test of py 312 --- .github/workflows/build_and_test.yml | 4 ++-- docs/book/content/contributing/contributor_guide.md | 2 +- environment.yml | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 8e3257b..6586c0e 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -24,7 +24,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.10", "3.11"] + python-version: ["3.11", "3.12"] steps: - name: Checkout @@ -35,7 +35,7 @@ jobs: - name: Setup Miniconda using Python ${{ matrix.python-version }} uses: conda-incubator/setup-miniconda@v3 with: - miniforge-variant: Mambaforge + miniconda-version: "latest" auto-update-conda: true activate-environment: ogzaf-dev environment-file: environment.yml diff --git a/docs/book/content/contributing/contributor_guide.md b/docs/book/content/contributing/contributor_guide.md index fb88695..5b715e2 100644 --- a/docs/book/content/contributing/contributor_guide.md +++ b/docs/book/content/contributing/contributor_guide.md @@ -163,6 +163,6 @@ situations, in which case other contributors are here to help. (Sec_ContribFootnotes)= ## Footnotes -[^recent_python]:The most recent version of Python from Anaconda is Python 3.12. `OG-ZAF` is currently tested to run on Python 3.10 and 3.11. +[^recent_python]:The most recent version of Python from Anaconda is Python 3.12. `OG-ZAF` is currently tested to run on Python 3.11 and 3.12. [^commandline_note]:The dollar sign is the end of the command prompt on a Mac. If you are using the Windows operating system, this is usually the right angle bracket (>). No matter the symbol, you don't need to type it (or anything to its left, which shows the current working directory) at the command line before you enter a command; the prompt symbol and preceding characters should already be there. diff --git a/environment.yml b/environment.yml index be660a0..5f0d08d 100644 --- a/environment.yml +++ b/environment.yml @@ -2,7 +2,7 @@ name: ogzaf-dev channels: - conda-forge dependencies: -- python>=3.7.7, <3.12 +- python>=3.7.7, <3.13 - numpy - setuptools - wheel diff --git a/setup.py b/setup.py index f731493..6aab7c9 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ packages=["ogzaf"], package_data={"ogzaf": ["ogzaf_default_parameters.json", "data/*"]}, include_packages=True, - python_requires=">=3.7.7, <3.12", + python_requires=">=3.7.7, <3.13", install_requires=[ "numpy", "psutil",