Skip to content

Commit

Permalink
Merge pull request #485 from hx2A/python39
Browse files Browse the repository at this point in the history
Python 3.9
  • Loading branch information
hx2A authored Jul 20, 2024
2 parents 2f29b81 + 9bb419a commit d3ff6fd
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 39 deletions.
50 changes: 24 additions & 26 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,32 @@ channels:
- conda-forge
- defaults
dependencies:
- autopep8=2.0.*
- black=23.3.*
- cairo=1.16.*
- cairocffi=1.5.*
- cairosvg=2.6.*
- flake8=6.0.*
- hatch=1.7.*
- ipython=8.12.*
- jedi=0.18.2
- jpype1=1.4.*
- autopep8=2.2.*
- black=24.2.*
- cairo=1.18.*
- cairocffi=1.7.*
- cairosvg=2.7.*
- flake8=7.1.*
- hatch=1.12.*
- ipython=8.18.*
- jedi=0.19.*
- jpype1=1.5.*
- jupyter=1.0.*
- jupyter-book=0.15.1
- jupyter-packaging=0.12.*
- jupyterlab=4.0.*
- jupytext=1.14.7
- line_profiler=4.0.*
- matplotlib=3.7.*
- nodejs=18.15.*
- numpy=1.24.*
- pandas=2.0.*
- pillow=9.5.*
- jupyter-book=1.0.*
- jupyterlab=4.2.*
- jupytext=1.16.*
- line_profiler=4.1.*
- matplotlib=3.9.*
- numpy=1.26.*
- pandas=2.2.*
- pillow=10.2.*
- pip
- python=3.8.*
- requests=2.29.*
- python=3.9.*
- requests=2.31.*
- shapely=2.0.*
- trimesh=3.23.*
- twine=4.0.*
- yarn=1.22.*
- trimesh=4.3.*
- twine>=5.1.*
- yarn>=4.3.*
- pip:
- bump2version==1.0.*
- stackprinter==0.2.*
- stackprinter==0.2.11
2 changes: 1 addition & 1 deletion py5_resources/py5_module/py5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# -*- coding: utf-8 -*-
# *** FORMAT PARAMS ***
"""
py5 is a version of Processing for Python 3.8+. It makes the Processing Java libraries available to the CPython interpreter using JPype.
py5 is a version of Processing for Python 3.9+. It makes the Processing Java libraries available to the CPython interpreter using JPype.
"""
from __future__ import annotations

Expand Down
23 changes: 11 additions & 12 deletions py5_resources/py5_module/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dynamic = ["version"]
description = "Processing for CPython"
readme = "README.md"
license = ""
requires-python = ">3.8"
requires-python = ">3.9"
authors = [
{ name = "Jim Schmitz", email = "[email protected]" },
]
Expand All @@ -25,7 +25,6 @@ classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Programming Language :: Java",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -34,14 +33,14 @@ classifiers = [
"Topic :: Multimedia :: Graphics",
]
dependencies = [
"autopep8>=2.0",
"jpype1>=1.4",
"line_profiler>=4.0",
"numpy>=1.24",
"pillow>=9.5",
"pyobjc>=9.0;sys_platform==\"darwin\"",
"requests>=2.28",
"stackprinter>=0.2.10",
"autopep8>=2.2",
"jpype1>=1.5",
"line_profiler>=4.1",
"numpy>=1.26",
"pillow>=10.2",
"pyobjc>=10.1;sys_platform==\"darwin\"",
"requests>=2.31",
"stackprinter>=0.2.11",
]

[project.optional-dependencies]
Expand All @@ -50,10 +49,10 @@ jupyter = [
]
extras = [
"colour>=0.1.5",
"matplotlib>=3.7",
"matplotlib>=3.9",
"py5jupyter>=0.2.0a0",
"shapely>=2.0",
"trimesh>=3.23",
"trimesh>=4.3",
]

[project.scripts]
Expand Down

0 comments on commit d3ff6fd

Please sign in to comment.