Skip to content

Commit 471ec11

Browse files
1.13.4
Internal-RevId: 2d2b1b3d6d797b6650f62f2c4851ce507a319f30
1 parent 015d9f7 commit 471ec11

152 files changed

Lines changed: 797 additions & 530 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/dagsterVersions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"Version 1.12 (1.12.8)": "https://release-1-12-8.archive.dagster-docs.io/",
23
"Version 1.11 (1.11.16)": "https://release-1-11-16.archive.dagster-docs.io/",
34
"Version 1.10 (1.10.21)": "https://release-1-10-21.archive.dagster-docs.io/",
45
"Version 1.9 (1.9.13)": "https://release-1-9-13.archive.dagster-docs.io/"

docs/docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ const config: Config = {
235235
lastVersion: 'current',
236236
versions: {
237237
current: {
238-
label: 'Latest (1.12.8)',
238+
label: 'Latest (1.13.4)',
239239
path: '/',
240240
},
241241
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1!0+dev"
1+
__version__ = "1.13.4"

python_modules/dagit/pyproject.toml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[build-system]
2-
requires = ["hatchling>=1.19.0"]
2+
requires = [
3+
"hatchling>=1.19.0",
4+
]
35
build-backend = "hatchling.build"
46

57
[project]
68
name = "dagit"
7-
version = "1!0+dev"
9+
version = "1.13.4"
810
description = "Web UI for dagster."
9-
authors = [{name = "Dagster Labs", email = "hello@dagsterlabs.com"}]
11+
authors = [
12+
{ name = "Dagster Labs", email = "hello@dagsterlabs.com" },
13+
]
1014
license = "Apache-2.0"
1115
readme = "README.rst"
1216
requires-python = ">=3.10,<3.15"
@@ -19,7 +23,7 @@ classifiers = [
1923
"Operating System :: OS Independent",
2024
]
2125
dependencies = [
22-
"dagster-webserver==1!0+dev",
26+
"dagster-webserver==1.13.4",
2327
]
2428

2529
[project.urls]
@@ -31,8 +35,8 @@ dagit-debug = "dagster_webserver.debug:main"
3135

3236
[project.optional-dependencies]
3337
notebook = [
34-
"dagster-webserver[notebook]==1!0+dev",
38+
"dagster-webserver[notebook]==1.13.4",
3539
]
3640
test = [
37-
"dagster-webserver[test]==1!0+dev",
41+
"dagster-webserver[test]==1.13.4",
3842
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1!0+dev"
1+
__version__ = "1.13.4"
Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[build-system]
2-
requires = ["hatchling>=1.19.0"]
2+
requires = [
3+
"hatchling>=1.19.0",
4+
]
35
build-backend = "hatchling.build"
46

57
[project]
68
name = "dagster-graphql"
7-
version = "1!0+dev"
9+
version = "1.13.4"
810
description = "The GraphQL API for Dagster."
9-
authors = [{name = "Dagster Labs", email = "hello@dagsterlabs.com"}]
11+
authors = [
12+
{ name = "Dagster Labs", email = "hello@dagsterlabs.com" },
13+
]
1014
license = "Apache-2.0"
1115
requires-python = ">=3.10,<3.15"
1216
classifiers = [
@@ -18,11 +22,11 @@ classifiers = [
1822
"Operating System :: OS Independent",
1923
]
2024
dependencies = [
21-
"dagster==1!0+dev",
25+
"dagster==1.13.4",
2226
"graphene>=3,<4",
2327
"gql[requests]>=3,<5",
2428
"requests",
25-
"starlette", # used for run_in_threadpool utility fn
29+
"starlette",
2630
]
2731

2832
[project.urls]
@@ -32,4 +36,6 @@ Homepage = "https://github.com/dagster-io/dagster/tree/master/python_modules/dag
3236
dagster-graphql = "dagster_graphql.cli:main"
3337

3438
[project.optional-dependencies]
35-
test = ["dagster-test"]
39+
test = [
40+
"dagster-test",
41+
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1!0+dev"
1+
__version__ = "1.13.4"

python_modules/dagster-pipes/pyproject.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[build-system]
2-
requires = ["hatchling>=1.19.0"]
2+
requires = [
3+
"hatchling>=1.19.0",
4+
]
35
build-backend = "hatchling.build"
46

57
[project]
68
name = "dagster-pipes"
7-
version = "1!0+dev"
9+
version = "1.13.4"
810
description = "Toolkit for Dagster integrations with transform logic outside of Dagster"
9-
authors = [{name = "Dagster Labs", email = "hello@dagsterlabs.com"}]
11+
authors = [
12+
{ name = "Dagster Labs", email = "hello@dagsterlabs.com" },
13+
]
1014
license = "Apache-2.0"
1115
requires-python = ">=3.10,<3.15"
1216
classifiers = [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1!0+dev"
1+
__version__ = "1.13.4"
Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
[build-system]
2-
requires = ["hatchling>=1.19.0"]
2+
requires = [
3+
"hatchling>=1.19.0",
4+
]
35
build-backend = "hatchling.build"
46

57
[project]
68
name = "dagster-webserver"
7-
version = "1!0+dev"
9+
version = "1.13.4"
810
description = "Web UI for dagster."
9-
authors = [{name = "Dagster Labs", email = "hello@dagsterlabs.com"}]
11+
authors = [
12+
{ name = "Dagster Labs", email = "hello@dagsterlabs.com" },
13+
]
1014
license = "Apache-2.0"
1115
readme = "README.rst"
1216
requires-python = ">=3.10,<3.15"
@@ -20,9 +24,9 @@ classifiers = [
2024
]
2125
dependencies = [
2226
"click>=7.0,<9.0",
23-
"dagster==1!0+dev",
24-
"dagster-graphql==1!0+dev",
25-
"starlette!=0.36.0", # avoid bad version https://github.com/encode/starlette/discussions/2436
27+
"dagster==1.13.4",
28+
"dagster-graphql==1.13.4",
29+
"starlette!=0.36.0",
2630
"uvicorn[standard]",
2731
]
2832

@@ -33,9 +37,15 @@ Homepage = "https://github.com/dagster-io/dagster"
3337
dagster-webserver = "dagster_webserver.cli:main"
3438
dagster-webserver-debug = "dagster_webserver.debug:main"
3539

36-
[tool.hatch.build]
37-
artifacts = ["dagster_webserver/webapp/build/"]
38-
3940
[project.optional-dependencies]
40-
notebook = ["nbconvert"] # notebooks support
41-
test = ["starlette[full]"] # TestClient deps in full
41+
notebook = [
42+
"nbconvert",
43+
]
44+
test = [
45+
"starlette[full]",
46+
]
47+
48+
[tool.hatch.build]
49+
artifacts = [
50+
"dagster_webserver/webapp/build/",
51+
]

0 commit comments

Comments
 (0)