deno 0.0.2__tar.gz → 2.4.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of deno might be problematic. Click here for more details.

@@ -0,0 +1,15 @@
1
+ name: Release
2
+
3
+ on:
4
+ workflow_dispatch:
5
+
6
+ jobs:
7
+ pypi-publish:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ id-token: write
11
+ steps:
12
+ - uses: actions/checkout@v5
13
+ - uses: astral-sh/setup-uv@v6
14
+ - run: ./scripts/build.sh
15
+ - uses: pypa/gh-action-pypi-publish@release/v1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deno
3
- Version: 0.0.2
3
+ Version: 2.4.5
4
4
  Requires-Python: >=3.10
5
5
  Description-Content-Type: text/markdown
6
6
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "deno"
7
- version = "0.0.2"
7
+ version = "2.4.5"
8
8
  readme = "README.md"
9
9
  requires-python = ">=3.10"
10
10
 
@@ -71,11 +71,7 @@ class CustomHook(BuildHookInterface):
71
71
  return
72
72
 
73
73
  zname = resolve_deno_archive_name()
74
- deno = download_deno_bin(
75
- Path(self.directory),
76
- os.environ.get("DENO_VERSION", self.metadata.version),
77
- zname,
78
- )
74
+ deno = download_deno_bin(Path(self.directory), self.metadata.version, zname)
79
75
  build_data["tag"] = binary_to_tag[zname]
80
76
  build_data["shared_scripts"][str(deno.absolute())] = f"src/{deno.name}"
81
77
 
@@ -1,8 +1,8 @@
1
1
  version = 1
2
- revision = 2
2
+ revision = 3
3
3
  requires-python = ">=3.10"
4
4
 
5
5
  [[package]]
6
6
  name = "deno"
7
- version = "2.3.5"
7
+ version = "2.4.5"
8
8
  source = { editable = "." }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes