Skip to content

Commit

Permalink
test: 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
achaikou committed Aug 9, 2024
1 parent e62310c commit 7161795
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 22 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@ jobs:
strategy:
matrix:
include:
- os: windows-2019
arch: AMD64
cmake_generator: "Visual Studio 16 2019"
cmake_generator_platform: "x64"
- os: windows-2019
arch: x86
cmake_generator: "Visual Studio 16 2019"
cmake_generator_platform: "Win32"
# - os: windows-2019
# arch: AMD64
# cmake_generator: "Visual Studio 16 2019"
# cmake_generator_platform: "x64"
# - os: windows-2019
# arch: x86
# cmake_generator: "Visual Studio 16 2019"
# cmake_generator_platform: "Win32"
- os: ubuntu-20.04
arch: x86_64
- os: ubuntu-20.04
arch: aarch64
- os: ubuntu-20.04
arch: i686 #builds from cibuildwheel, qemu not needed
- os: macos-13
arch: x86_64
- os: macos-14
arch: arm64
# - os: ubuntu-20.04
# arch: aarch64
# - os: ubuntu-20.04
# arch: i686 #builds from cibuildwheel, qemu not needed
# - os: macos-13
# arch: x86_64
# - os: macos-14
# arch: arm64

steps:
- name: Disable autocrlf
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
needs: wheels
name: Publish wheels to PyPI
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
#if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v4

Expand All @@ -99,4 +99,5 @@ jobs:
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
packages_dir: artifact
repository-url: https://test.pypi.org/legacy/
packages_dir: artifact # i think this should be wheelhouse
2 changes: 1 addition & 1 deletion python/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
# pass

# The full version, including alpha/beta/rc tags.
release = "1.0.2"
release = "0.4.2"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
version = 1.0.2
version = 0.4.2
4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ def get_long_description():
return f.read()

skbuild.setup(
name = 'dlisio',
name = 'test-ignore-eqdlis',
description = 'Python library for working with the well log formats DLIS (RP66v1) and LIS79',
long_description = get_long_description(),
long_description_content_type = "text/markdown",
url = 'https://github.com/equinor/dlisio',
url = 'https://github.com/achaikou/dlisio',
packages = ['dlisio', 'dlisio.dlis', 'dlisio.lis', 'dlisio.common', 'dlisio.dlis.utils'],
license = 'LGPL-3.0',
platforms = 'any',
Expand Down

0 comments on commit 7161795

Please sign in to comment.