Skip to content

Commit

Permalink
migrate from development server
Browse files Browse the repository at this point in the history
  • Loading branch information
sr99622 committed Jan 6, 2025
1 parent 99d6a80 commit d0c2431
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "pybind11"]
path = pybind11
url = https://github.com/pybind/pybind11
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

cmake_minimum_required(VERSION 3.17)

project(libavio VERSION 3.2.3)
project(libavio VERSION 3.2.4)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)
Expand Down
1 change: 1 addition & 0 deletions pybind11
Submodule pybind11 added at c5ed9d
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "avio"
version = "3.2.3"
version = "3.2.4"
authors = [
{ name="Stephen Rhodes", email="sr99622@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from setuptools.command.build_ext import build_ext

PKG_NAME = "avio"
VERSION = "3.2.3"
VERSION = "3.2.4"

class CMakeExtension(Extension):
def __init__(self, name, sourcedir=""):
Expand Down
2 changes: 1 addition & 1 deletion src/avio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ PYBIND11_MODULE(avio, m)
.value("AV_SAMPLE_FMT_NB", AVSampleFormat::AV_SAMPLE_FMT_NB)
.export_values();

m.attr("__version__") = "3.2.3";
m.attr("__version__") = "3.2.4";

}

Expand Down

0 comments on commit d0c2431

Please sign in to comment.