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", ],