diff --git a/recipe/meta.yaml b/recipe/meta.yaml index d939d19..ed7a7c5 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "pyiron_gui" %} -{% set version = "0.0.8" %} +{% set version = "0.0.9" %} package: name: {{ name|lower }} @@ -7,12 +7,10 @@ package: source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/pyiron_gui-{{ version }}.tar.gz - sha256: 13923d79263ce188cb8cfec3b4dd8e99d94580f3fa792cb1807caa4fb0524db6 - patches: - - setup.patch + sha256: 0085f5e3e84bf1a67ef78ac0e80e82e398d6a3bf7a051949267f1d8cd28aab70 build: - number: 1 + number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv @@ -23,11 +21,11 @@ requirements: run: - python >=3.5 - ipywidgets =7.7.1 - - pyiron_base >=0.5.22 - - pyiron_atomistics >=0.2.54 - - numpy >=1.23.2 - - pandas >=1.4.3 - - matplotlib-base >=3.5.3 + - pyiron_base >=0.5.28 + - pyiron_atomistics >=0.2.59 + - numpy >=1.23.4 + - pandas >=1.5.1 + - matplotlib-base >=3.6.2 test: imports: diff --git a/recipe/setup.patch b/recipe/setup.patch deleted file mode 100644 index bcb8dc9..0000000 --- a/recipe/setup.patch +++ /dev/null @@ -1,99 +0,0 @@ -From 9923f5f51d50e6bdf889f0035ad3867777f5fb02 Mon Sep 17 00:00:00 2001 -From: Jan Janssen -Date: Mon, 21 Nov 2022 10:47:17 -0700 -Subject: [PATCH] fix dos2unix and add versioneer - ---- - setup.py | 85 ++++++++++++++++++++++++++++---------------------------- - 1 file changed, 43 insertions(+), 42 deletions(-) - -diff --git a/setup.py b/setup.py -index 6ddf3d4..84ee22a 100644 ---- a/setup.py -+++ b/setup.py -@@ -1,42 +1,43 @@ --""" --Setuptools based setup module --""" --from setuptools import setup, find_packages -- --import versioneer -- --setup( -- name='pyiron_gui', -- version=versioneer.get_version(), -- description='Repository for GUI plugins to the pyiron IDE.', -- long_description='http://pyiron.org', -- -- url='https://github.com/pyiron/pyiron_gui', -- author='Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department', -- author_email='siemer@mpie.de', -- license='BSD', -- -- classifiers=[ -- 'Development Status :: 4 - Beta', -- 'Topic :: Scientific/Engineering :: Physics', -- 'License :: OSI Approved :: BSD License', -- 'Intended Audience :: Science/Research', -- 'Operating System :: OS Independent', -- 'Programming Language :: Python :: 3', -- 'Programming Language :: Python :: 3.7', -- 'Programming Language :: Python :: 3.8', -- 'Programming Language :: Python :: 3.9', -- 'Programming Language :: Python :: 3.10' -- ], -- -- keywords='pyiron', -- packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]), -- install_requires=[ -- 'pyiron_base>=0.5.22', -- 'pyiron_atomistics>=0.2.54', -- 'ipywidgets>=7.7.1', -- 'matplotlib>=3.5.3', -- 'numpy>=1.23.2', -- 'pandas>=1.4.3', -- ] --) -+""" -+Setuptools based setup module -+""" -+from setuptools import setup, find_packages -+ -+import versioneer -+ -+setup( -+ name='pyiron_gui', -+ version=versioneer.get_version(), -+ description='Repository for GUI plugins to the pyiron IDE.', -+ long_description='http://pyiron.org', -+ -+ url='https://github.com/pyiron/pyiron_gui', -+ author='Max-Planck-Institut für Eisenforschung GmbH - Computational Materials Design (CM) Department', -+ author_email='siemer@mpie.de', -+ license='BSD', -+ -+ classifiers=[ -+ 'Development Status :: 4 - Beta', -+ 'Topic :: Scientific/Engineering :: Physics', -+ 'License :: OSI Approved :: BSD License', -+ 'Intended Audience :: Science/Research', -+ 'Operating System :: OS Independent', -+ 'Programming Language :: Python :: 3', -+ 'Programming Language :: Python :: 3.7', -+ 'Programming Language :: Python :: 3.8', -+ 'Programming Language :: Python :: 3.9', -+ 'Programming Language :: Python :: 3.10' -+ ], -+ -+ keywords='pyiron', -+ packages=find_packages(exclude=["*tests*", "*docs*", "*binder*", "*conda*", "*notebooks*", "*.ci_support*"]), -+ install_requires=[ -+ 'pyiron_base>=0.5.22', -+ 'pyiron_atomistics>=0.2.54', -+ 'ipywidgets>=7.7.1', -+ 'matplotlib>=3.5.3', -+ 'numpy>=1.23.2', -+ 'pandas>=1.4.3', -+ ], -+ cmdclass=versioneer.get_cmdclass(), -+)