From cb59d328a1555130fe78d8ae938eb200ecc891f4 Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Fri, 10 Feb 2023 14:23:53 -0500 Subject: [PATCH] bump version --- .github/workflows/python-publish.yml | 2 +- pyproject.toml | 96 +++++++++++++--------------- 2 files changed, 46 insertions(+), 52 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index faefd4c..fcc46f3 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -28,7 +28,7 @@ jobs: python-version: "3.8" cache: true architecture : x64 - version: 2.4.3 + version: 2.4.5 prerelease: false enable-pep582: true - name: Install dependencies diff --git a/pyproject.toml b/pyproject.toml index 8b0633a..7c50572 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,71 +1,65 @@ [build-system] build-backend = "pdm.pep517.api" -requires = ["pdm-pep517>=1.0.0"] +requires = [ + "pdm-pep517>=1.0.0", +] [tool.black] -exclude = ''' -/( - \.eggs - | \.git - | \.hg - | \.mypy_cache - | \.nox - | \.tox - | \.venv - | _build - | buck-out - | build - | dist -)/ -''' -include = '\.pyi?$' +exclude = "/(\n \\.eggs\n | \\.git\n | \\.hg\n | \\.mypy_cache\n | \\.nox\n | \\.tox\n | \\.venv\n | _build\n | buck-out\n | build\n | dist\n)/\n" +include = "\\.pyi?$" [tool.pdm] package-dir = "src" [project] authors = [ - { name = "Joshua Welch", email = "welchjd@med.umich.edu" }, - { name = "Lu Lu", email = "luluhz@umich.edu" }, + { name = "Joshua Welch", email = "welchjd@med.umich.edu" }, + { name = "Lu Lu", email = "luluhz@umich.edu" }, ] classifiers = [ - "Development Status :: 4 - Beta", - "License :: OSI Approved :: MIT License", - "Natural Language :: English", - "Operating System :: OS Independent", - "Programming Language :: Python :: 3.8", + "Development Status :: 4 - Beta", + "License :: OSI Approved :: MIT License", + "Natural Language :: English", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3.8", ] dependencies = [ - "adjustText>=0.7.3", - "anndata>=0.8.0", - "annoy", - "bokeh", - "colorcet", - "goatools>=1.3.1", - "h5sparse>=0.1.0", - "holoviews", - "leidenalg", - "louvain", - "matplotlib>=3.6.3", - "mygene", - "numexpr>=2.8.4", - "numpy", - "pandas", - "plotnine>=0.10.1", - "python-igraph", - "scikit-learn", - "seaborn>=0.12.2", - "umap-learn", + "adjustText>=0.7.3", + "anndata>=0.8.0", + "annoy", + "bokeh", + "colorcet", + "goatools>=1.3.1", + "h5sparse>=0.1.0", + "holoviews", + "leidenalg", + "louvain", + "matplotlib>=3.6.3", + "mygene", + "numexpr>=2.8.4", + "numpy", + "pandas", + "plotnine>=0.10.1", + "python-igraph", + "scikit-learn", + "seaborn>=0.12.2", + "umap-learn", ] description = "The Python version of LIGER package." -keywords = ["LIGER"] -license = { text = "MIT" } -maintainers = [{ name = "Andrew Robbins", email = "robbiand@med.umich.edu" }] +keywords = [ + "LIGER", +] +maintainers = [ + { name = "Andrew Robbins", email = "robbiand@med.umich.edu" }, +] name = "pyliger" readme = "README.md" requires-python = "<3.11, >=3.8" -version = "0.1" +version = "0.1.1" + +[project.license] +text = "MIT" - [project.urls] - homepage = "https://welch-lab.github.io" - repository = "https://github.com/welch-lab/pyliger" +[project.urls] +homepage = "https://welch-lab.github.io" +repository = "https://github.com/welch-lab/pyliger"