Skip to content

Commit

Permalink
reactivate make publish command
Browse files Browse the repository at this point in the history
  • Loading branch information
zer0dss committed Jan 7, 2025
1 parent 2b825d0 commit eb89922
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
make bump dev
make test-data
make test-serialization
make publish
git add tests/serialization/data/*
git add -u
git commit -m "no-test.Update serialization test data after new dev version pre-release"
Expand All @@ -63,6 +64,7 @@ jobs:
make bump deploy
make test-data
make test-serialization
make publish
make bump patch
make bump dev
make test-data ARGS=--start_new_version
Expand Down
2 changes: 1 addition & 1 deletion edsl/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.42.dev1"
__version__ = "0.1.39.dev7"
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [ "poetry-core", "setuptools<72.0",]
requires = ["poetry-core", "setuptools<72.0"]

[tool.poetry]
authors = [ "Apostolos Filippas <apostolos@expectedparrot.com>", "John Horton <john@expectedparrot.com>", "Robin Horton <robin@expectedparrot.com>",]
classifiers = [ "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules",]
authors = ["Apostolos Filippas <apostolos@expectedparrot.com>", "John Horton <john@expectedparrot.com>", "Robin Horton <robin@expectedparrot.com>"]
classifiers = ["Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules"]
description = "Create and analyze LLM-based surveys"
documentation = "https://docs.expectedparrot.com"
homepage = "https://www.expectedparrot.com/"
include = [ "edsl/questions/templates/**/*",]
keywords = [ "LLM", "social science", "surveys", "user research",]
include = ["edsl/questions/templates/**/*"]
keywords = ["LLM", "social science", "surveys", "user research"]
license = "MIT"
name = "edsl"
readme = "README.md"
version = "0.1.42.dev1"
version = "0.1.39.dev7"

[tool.poetry.dependencies]
python = ">=3.9.1,<3.13"
Expand Down Expand Up @@ -53,12 +53,9 @@ python-pptx = "^1.0.2"
platformdirs = "^4.3.6"

[tool.poetry.dependencies.black]
extras = [ "jupyter",]
extras = ["jupyter"]
version = "^24.4.2"

[tool.tomlsort.overrides."tool.poetry.dependencies"]
table_keys = false

[tool.poetry.group.dev.dependencies]
coverage = "^7.3.3"
fastapi = "^0.112.1"
Expand All @@ -84,3 +81,6 @@ sphinx-rtd-theme = "^2.0.0"
toml = "^0.10.2"
toml-sort = "^0.23.1"
uvicorn = "^0.30.6"

[tool.tomlsort.overrides."tool.poetry.dependencies"]
table_keys = false

0 comments on commit eb89922

Please sign in to comment.