dockerfile-analyzer 0.3.9__tar.gz → 0.3.10__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.
@@ -11,7 +11,7 @@ on:
11
11
  - main
12
12
  - master
13
13
  tags:
14
- - '*'
14
+ - "*"
15
15
  pull_request:
16
16
  workflow_dispatch:
17
17
 
@@ -117,7 +117,7 @@ jobs:
117
117
  strategy:
118
118
  matrix:
119
119
  platform:
120
- - runner: macos-13
120
+ - runner: macos-15-intel
121
121
  target: x86_64
122
122
  - runner: macos-14
123
123
  target: aarch64
@@ -170,7 +170,7 @@ jobs:
170
170
  - name: Generate artifact attestation
171
171
  uses: actions/attest-build-provenance@v2
172
172
  with:
173
- subject-path: 'wheels-*/*'
173
+ subject-path: "wheels-*/*"
174
174
  - name: Publish to PyPI
175
175
  if: ${{ startsWith(github.ref, 'refs/tags/') }}
176
176
  uses: PyO3/maturin-action@v1
@@ -20,7 +20,7 @@ dependencies = [
20
20
 
21
21
  [[package]]
22
22
  name = "dockerfile-analyzer"
23
- version = "0.3.9"
23
+ version = "0.3.10"
24
24
  dependencies = [
25
25
  "docker-image",
26
26
  "parse-dockerfile",
@@ -70,9 +70,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
70
70
 
71
71
  [[package]]
72
72
  name = "parse-dockerfile"
73
- version = "0.1.2"
73
+ version = "0.1.3"
74
74
  source = "registry+https://github.com/rust-lang/crates.io-index"
75
- checksum = "c00b9fce6d36dd25a359c1d96874be502a5c95d564173c74b1365ac3598949f4"
75
+ checksum = "294c000b991a66259deb0a90114577d837f1753b4e58a53723bba61cf663f698"
76
76
  dependencies = [
77
77
  "smallvec",
78
78
  ]
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "dockerfile-analyzer"
3
- version = "0.3.9"
3
+ version = "0.3.10"
4
4
  edition = "2024"
5
5
  readme = "README.md"
6
6
 
@@ -12,6 +12,6 @@ crate-type = ["cdylib"]
12
12
  [dependencies]
13
13
  pyo3 = "0.27.2"
14
14
  docker-image = {version = "0.2.1"}
15
- parse-dockerfile = { version = "0.1.2", default-features = false }
15
+ parse-dockerfile = { version = "0.1.3", default-features = false }
16
16
  shlex = "1.3.0"
17
17
  serde = { version = "1.0.228", features = ["derive"] }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dockerfile-analyzer
3
- Version: 0.3.9
3
+ Version: 0.3.10
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy