quizzy 0.3.0__tar.gz → 0.3.1__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,6 +13,8 @@ jobs:
13
13
  - uses: astral-sh/setup-uv@v4
14
14
  with:
15
15
  version: "0.5.9"
16
+ - name: Check lockfile
17
+ run: uv lock --check
16
18
  - name: Ruff lint
17
19
  run: uv run ruff check
18
20
  - name: Ruff format
@@ -16,3 +16,8 @@ repos:
16
16
  rev: "5.13.2"
17
17
  hooks:
18
18
  - id: isort
19
+ - repo: https://github.com/astral-sh/uv-pre-commit
20
+ rev: 0.5.10
21
+ hooks:
22
+ # Update the uv lockfile
23
+ - id: uv-lock
@@ -1,5 +1,10 @@
1
+
1
2
  # Changelog
2
3
 
4
+ ## v0.3.1
5
+
6
+ * Fixed the lockfile for this version
7
+
3
8
  ## v0.3.0
4
9
 
5
10
  * Add *Escape* keybinding to dismiss question and answer modals
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quizzy
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: A Python TUI quiz app
5
5
  Author-email: Jonas Ehrlich <jonas.ehrlich@gmail.com>
6
6
  License-Expression: MIT
@@ -1,7 +1,7 @@
1
1
 
2
2
  [project]
3
3
  name = "quizzy"
4
- version = "0.3.0"
4
+ version = "0.3.1"
5
5
  description = "A Python TUI quiz app"
6
6
  authors = [{ name = "Jonas Ehrlich", email = "jonas.ehrlich@gmail.com" }]
7
7
  readme = "README.md"
@@ -840,7 +840,7 @@ wheels = [
840
840
 
841
841
  [[package]]
842
842
  name = "quizzy"
843
- version = "0.3.0"
843
+ version = "0.3.1"
844
844
  source = { editable = "." }
845
845
  dependencies = [
846
846
  { name = "pydantic" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes