Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.7 #3

Merged
merged 5 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.2.2

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5.3.0
name: Install Python

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0
run: python -m pip install cibuildwheel==2.21.3

- name: Get submodules
run: git submodule update --init --recursive
Expand All @@ -38,7 +38,7 @@ jobs:
env:
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.4.3
name: Upload wheels
with:
name: wheels
Expand All @@ -51,15 +51,15 @@ jobs:

steps:
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5.3.0
with:
python-version: '3.x'
- name: Install twine
run: |
python -m pip install --upgrade pip
pip install twine
- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.8
with:
name: wheels
path: ./wheels
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.2.2

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5.3.0
name: Install Python

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0
run: python -m pip install cibuildwheel==2.21.3

- name: Get submodules
run: git submodule update --init --recursive
Expand All @@ -34,4 +34,4 @@ jobs:
run: |
python -m cibuildwheel --output-dir wheels
env:
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.2.2
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5.3.0
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def run(self):

setup(
name='yara-python-dex',
version='1.0.6',
version='1.0.7',
description='Python interface for YARA',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down
Loading