Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
python-version: ${{ matrix.python }}

- name: install dependencies
run: sudo apt-get install -qq cmake bison flex check libjson-c-dev libglib2.0-dev libxenstore3.0 libxen-dev libvirt-dev
run: sudo apt-get update && sudo apt-get install -qq cmake bison flex check libjson-c-dev libglib2.0-dev libxenstore3.0 libxen-dev libvirt-dev

- name: clone libvmi
uses: actions/checkout@v2
Expand Down Expand Up @@ -80,4 +80,4 @@ jobs:
with:
user: __token__
password: ${{ secrets.ACCESS_TOKEN }}
packages_dir: python-libvmi/dist/
packages_dir: python-libvmi/dist/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Libvmi Python bindings

[![Join the chat at https://gitter.im/libvmi/python](https://badges.gitter.im/libvmi/python.svg)](https://gitter.im/libvmi/python?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://travis-ci.org/libvmi/python.svg?branch=master)](https://travis-ci.org/libvmi/python)
[![CI](https://github.com/libvmi/python/actions/workflows/ci.yml/badge.svg)](https://github.com/libvmi/python/actions/workflows/ci.yml)

If you'd rather perform introspection using Python instead of C, then these
bindings will help get you going.
Expand Down
2 changes: 1 addition & 1 deletion libvmi/events_cdef.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define VMI_EVENTS_VERSION 0x00000007
#define VMI_EVENTS_VERSION 0x00000008

typedef uint16_t vmi_event_type_t;

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def read_file(filename):

setup(
name='libvmi',
version='3.4',
version='3.5',
description='Python interface to LibVMI',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
Expand Down