Skip to content

Commit

Permalink
Merge pull request #1 from nedjitef/pipeline
Browse files Browse the repository at this point in the history
Changes in Pipeline
  • Loading branch information
nedjitef authored Oct 14, 2024
2 parents bd80d19 + 55c8dd6 commit c0b3fca
Show file tree
Hide file tree
Showing 7 changed files with 1,526 additions and 696 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,21 @@ on: [push]
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python: [2.7, 3.6, 3.7, 3.8]
os: [
'ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-24.04',
'macos-13', 'macos-14',
'windows-2019', 'windows-2022'
]
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ on:

jobs:
deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
3 changes: 3 additions & 0 deletions mkp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,6 @@ def _extract_files_in_directory(self, path, directory):
with tarfile.open(fileobj=dir_archive_file) as archive:
members = [member for member in archive.getmembers() if member.name in files]
archive.extractall(path=target_path, members=members)

from . import _version
__version__ = _version.get_versions()['version']
Loading

0 comments on commit c0b3fca

Please sign in to comment.