From 4a6a48d6aaeac634242f5c6768e2d3190c3930a7 Mon Sep 17 00:00:00 2001 From: jung-geun Date: Thu, 28 Mar 2024 22:36:34 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B0=9C=EB=B0=9C=EC=9E=90=EA=B0=80=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=ED=95=9C=20=EB=82=B4=EC=9A=A9=EC=97=90=20?= =?UTF-8?q?=EB=8C=80=ED=95=9C=20git=20diff=EC=9E=85=EB=8B=88=EB=8B=A4.***?= =?UTF-8?q?=20***=EA=B0=9C=EB=B0=9C=EC=9E=90=EA=B0=80=20=EC=82=AC=EC=9A=A9?= =?UTF-8?q?=ED=95=A0=20=EC=88=98=20=EC=9E=88=EB=8A=94=20=EC=BB=A4=EB=B0=8B?= =?UTF-8?q?=20=EB=A9=94=EC=8B=9C=EC=A7=80=EB=A5=BC=20=EC=A0=9C=EC=95=88?= =?UTF-8?q?=ED=95=A9=EB=8B=88=EB=8B=A4.***=20***=EC=BB=A4=EB=B0=8B=20?= =?UTF-8?q?=EB=A9=94=EC=8B=9C=EC=A7=80=EB=8A=94=20=EC=BD=94=EB=93=9C?= =?UTF-8?q?=EC=9D=98=20=EB=B3=80=EA=B2=BD=20=EC=82=AC=ED=95=AD=EC=9D=84=20?= =?UTF-8?q?=EA=B0=84=EA=B2=B0=ED=95=98=EA=B2=8C=20=EC=84=A4=EB=AA=85?= =?UTF-8?q?=ED=95=98=EB=8A=94=20=EC=A7=A7=EA=B3=A0=20=EA=B0=84=EA=B2=B0?= =?UTF-8?q?=ED=95=9C=20=EB=A9=94=EC=8B=9C=EC=A7=80=EC=97=AC=EC=95=BC=20?= =?UTF-8?q?=ED=95=A9=EB=8B=88=EB=8B=A4.***=20***=EC=BB=A4=EB=B0=8B=20?= =?UTF-8?q?=EB=A9=94=EC=8B=9C=EC=A7=80=EB=8A=94=20***=EB=A1=9C=20=EC=8B=9C?= =?UTF-8?q?=EC=9E=91=ED=95=98=EA=B3=A0=20***=EB=A1=9C=20=EB=81=9D=EB=82=98?= =?UTF-8?q?=EC=95=BC=20=ED=95=A9=EB=8B=88=EB=8B=A4.***=20***=EC=BB=A4?= =?UTF-8?q?=EB=B0=8B=20=EB=A9=94=EC=8B=9C=EC=A7=80=EB=8A=94=20=EB=8B=A4?= =?UTF-8?q?=EC=9D=8C=20=EB=A1=9C=EC=BA=98=EB=A1=9C=20=EB=B2=88=EC=97=AD?= =?UTF-8?q?=EB=90=98=EC=96=B4=EC=95=BC=20=ED=95=A9=EB=8B=88=EB=8B=A4:=20ko?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .devcontainer/devcontainer.json | 18 ++++++++---------- setup.py | 13 +++++++++---- 2 files changed, 17 insertions(+), 14 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c1f62d3..a1da97a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,9 +4,9 @@ "name": "Miniconda (Python 3)", // Configure tool-specific properties. "hostRequirements": { - "cpus": 8, - "memory": "64gb", - "storage": "128gb" + "cpus": 4, + "memory": "16gb", + "storage": "32gb" }, "customizations": { "vscode": { @@ -14,11 +14,8 @@ "ms-python.python", "ms-toolsai.jupyter", "donjayamanne.python-extension-pack", - "tht13.python", - "esbenp.prettier-vscode", "ms-python.black-formatter", - "github.vscode-github-actions", - "eamodio.gitlens" + "github.vscode-github-actions" ] } }, @@ -27,12 +24,13 @@ "ghcr.io/devcontainers/features/nvidia-cuda:1": { "installCudnn": true }, - "ghcr.io/devcontainers/features/anaconda:1": { - "version": "latest" + "ghcr.io/devcontainers/features/conda:1": { + "version": "latest", + "addCondaForge": true }, "ghcr.io/devcontainers/features/python:1": { "installTools": true, - "version": "3.9" + "version": "3.10" } }, // Use 'forwardPorts' to make a list of ports inside the container available locally. diff --git a/setup.py b/setup.py index aa3794b..54dc8ca 100644 --- a/setup.py +++ b/setup.py @@ -23,8 +23,15 @@ setup( "tensorboard", ], packages=find_packages(exclude=[]), - keywords=["pso", "tensorflow", "keras", "optimization","particle swarm optimization","pso2keras"], - python_requires=">=3.8", + keywords=[ + "pso", + "tensorflow", + "keras", + "optimization", + "particle swarm optimization", + "pso2keras", + ], + python_requires=">=3.10", package_data={}, zip_safe=False, long_description=open("README.md", encoding="UTF8").read(), @@ -33,8 +40,6 @@ setup( classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ],