Skip to content

Commit

Permalink
unpin flatbuffers and update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Chih-Hsuan Yen committed Sep 29, 2022
1 parent f430068 commit 411f407
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .SRCINFO
@@ -1,7 +1,7 @@
pkgbase = python-tf2onnx
pkgdesc = Convert TensorFlow models to ONNX
pkgver = 1.12.1
pkgrel = 1
pkgrel = 3
epoch = 1
url = https://github.com/onnx/tensorflow-onnx
arch = any
Expand All @@ -21,6 +21,7 @@ pkgbase = python-tf2onnx
depends = python-onnx
depends = python-requests
depends = python-six
depends = python-flatbuffers
source = https://github.com/onnx/tensorflow-onnx/archive/v1.12.1/tf2onnx-v1.12.1.tar.gz
source = onnxruntime.diff
sha256sums = 77529a4eaa6d50a572020a023af93047b942fbde5cf4447878014037481b7f5f
Expand Down
7 changes: 5 additions & 2 deletions PKGBUILD
Expand Up @@ -3,12 +3,12 @@
pkgname=python-tf2onnx
epoch=1
pkgver=1.12.1
pkgrel=1
pkgrel=3
pkgdesc='Convert TensorFlow models to ONNX'
arch=(any)
url='https://github.com/onnx/tensorflow-onnx'
license=(MIT)
depends=(python python-tensorflow python-numpy python-onnx python-requests python-six)
depends=(python python-tensorflow python-numpy python-onnx python-requests python-six python-flatbuffers)
makedepends=(python-setuptools python-build python-installer python-wheel)
checkdepends=(python-pytest python-graphviz python-parameterized python-yaml python-onnxruntime)
source=("https://github.com/onnx/tensorflow-onnx/archive/v$pkgver/tf2onnx-v$pkgver.tar.gz"
Expand All @@ -22,6 +22,9 @@ prepare() {
sed -i -r 's#--cov\S+##' setup.cfg
sed -i "s#'pytest-runner'##" setup.py

# https://github.com/onnx/tensorflow-onnx/issues/1977
sed -i 's#flatbuffers~=1.12#flatbuffers#' setup.py

# The latest upstream tag may not sync with the version file
echo $pkgver > VERSION_NUMBER

Expand Down

0 comments on commit 411f407

Please sign in to comment.