Skip to content

Commit

Permalink
update gitignore and limit to Python 3.10 and higher
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Müller <marcel.mueller@thch.uni-bonn.de>
  • Loading branch information
marcelmbn committed Aug 12, 2024
1 parent 0dbaecc commit 452b8df
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# VS Code-specific files
.vscode/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
4 changes: 2 additions & 2 deletions src/mlmgen/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = "0.1.dev8+ga45da81.d20240812"
__version_tuple__ = version_tuple = (0, 1, "dev8", "ga45da81.d20240812")
__version__ = version = "0.1.dev9+g0dbaecc.d20240812"
__version_tuple__ = version_tuple = (0, 1, "dev9", "g0dbaecc.d20240812")

0 comments on commit 452b8df

Please sign in to comment.