-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAINT - Pre release docs and improvements (#580)
* 📌 Pin Docker base images * 🔧 Update pyproject.toml * 📝 Update release docs * 👷 Update GH actions * 📝 Finish docs * 📝 Add note to update ui version * Fix some typos * 🔧 Improvements to Dockerfiles 🔧 Improvements to Dockerfiles * 📝 Update changelog example
- Loading branch information
Showing
11 changed files
with
192 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.4.15" | ||
__version__ = "2023.9.1rc0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[build-system] | ||
requires = ["hatchling>=1.14.0"] | ||
# https://github.com/ofek/hatch-vcs | ||
requires = ["hatchling>=1.14.0", "hatch-vcs"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
|
@@ -8,9 +9,7 @@ description = "Conda Environment Management, Builds, and Serve" | |
readme = "README.md" | ||
license = "BSD-3-Clause" | ||
requires-python = ">=3.7" | ||
keywords = [ | ||
"conda", | ||
] | ||
keywords = ["conda"] | ||
authors = [ | ||
{ name = "Christopher Ostrouchov", email = "[email protected]" }, | ||
] | ||
|
@@ -20,9 +19,10 @@ classifiers = [ | |
"Topic :: Software Development :: Build Tools", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3 :: Only", | ||
] | ||
dependencies = [ | ||
|
@@ -44,22 +44,20 @@ dependencies = [ | |
"jinja2", | ||
"python-multipart", | ||
# conda (which should not be included here) | ||
|
||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://conda.store/" | ||
Source = "https://github.com/conda-incubator/conda-store" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"build", | ||
"twine", | ||
] | ||
|
||
[tool.hatch.version] | ||
path = "conda_store_server/__init__.py" | ||
|
||
[project.optional-dependencies] | ||
dev = ["build", "twine"] | ||
|
||
[tool.hatch.envs.dev] | ||
dependencies = [ | ||
"pre-commit", | ||
|
@@ -74,18 +72,14 @@ dependencies = [ | |
] | ||
|
||
[tool.hatch.envs.dev.scripts] | ||
lint = [ | ||
"pre-commit run --all", | ||
] | ||
lint = ["pre-commit run --all"] | ||
docs = "sphinx-build -b html ../docs ../docs/_build" | ||
unit-test = "pytest tests -v" | ||
playwright-test = [ | ||
"playwright install", | ||
"pytest --video on ../tests/test_playwright.py" | ||
] | ||
integration-test = [ | ||
"pytest ../tests/test_api.py ../tests/test_metrics.py" | ||
] | ||
integration-test = ["pytest ../tests/test_api.py ../tests/test_metrics.py"] | ||
|
||
[tool.hatch.build.hooks.custom] | ||
|
||
|
@@ -101,5 +95,6 @@ target-version = ['py37', 'py38', 'py39'] | |
|
||
[tool.ruff] | ||
ignore = [ | ||
"E501", # line-length | ||
"E501", # line-length | ||
|
||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.4.15" | ||
__version__ = "2023.9.1rc0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
[build-system] | ||
requires = ["hatchling>=1.14.0"] | ||
# https://github.com/ofek/hatch-vcs | ||
requires = ["hatchling>=1.14.0", "hatch-vcs"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
|
@@ -8,45 +9,41 @@ description = "conda-store client" | |
readme = "README.md" | ||
license = "BSD-3-Clause" | ||
requires-python = ">=3.7" | ||
keywords = [ | ||
"conda", | ||
] | ||
keywords = ["conda"] | ||
authors = [ | ||
{ name = "Christopher Ostrouchov", email = "[email protected]" }, | ||
] | ||
maintainers = [{ name = "Tania Allard", email = "[email protected]" }] | ||
# TODO: update maintainers | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Build Tools", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Information Technology", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: System Administrators", | ||
] | ||
dependencies = [ | ||
"rich", | ||
"click", | ||
"yarl", | ||
"aiohttp", | ||
"ruamel.yaml", | ||
] | ||
dependencies = ["rich", "click", "yarl", "aiohttp", "ruamel.yaml"] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://conda.store/" | ||
Source = "https://github.com/conda-incubator/conda-store" | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"build", | ||
"twine", | ||
] | ||
|
||
[tool.hatch.version] | ||
path = "conda_store/__init__.py" | ||
|
||
[project.optional-dependencies] | ||
dev = ["build", "twine"] | ||
|
||
[tool.hatch.envs.dev] | ||
dependencies = [ | ||
"pre-commit", | ||
|
@@ -60,9 +57,7 @@ dependencies = [ | |
] | ||
|
||
[tool.hatch.envs.dev.scripts] | ||
lint = [ | ||
"pre-commit run --all", | ||
] | ||
lint = ["pre-commit run --all"] | ||
docs = "sphinx-build -b html ../docs ../docs/_build" | ||
test = "pytest tests" | ||
|
||
|
@@ -71,9 +66,10 @@ conda-store = "conda_store.__main__:main" | |
|
||
[tool.black] | ||
line-length = 88 | ||
target-version = ['py37', 'py38', 'py39'] | ||
target-version = ['py38', 'py39', 'py310'] | ||
|
||
[tool.ruff] | ||
ignore = [ | ||
"E501", # line-length | ||
"E501", # line-length | ||
|
||
] |
Oops, something went wrong.