Skip to content

Commit

Permalink
Merge pull request #502 from phenobarbital/test-version
Browse files Browse the repository at this point in the history
fix new release package
  • Loading branch information
phenobarbital authored Sep 10, 2024
2 parents 46d0682 + 5f9cece commit 7997591
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
os: [ubuntu-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -26,7 +26,7 @@ jobs:
- name: Build wheels on Ubuntu
if: matrix.os == 'ubuntu-latest'
uses: RalfG/python-wheels-manylinux-build@v0.5.0-manylinux2014_x86_64
uses: RalfG/python-wheels-manylinux-build@v0.7.1-manylinux2014_x86_64
with:
python-versions: 'cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312'
build-requirements: 'cython numpy'
Expand All @@ -39,7 +39,7 @@ jobs:
# You may need to adjust the above command based on your package's specific requirements
- name: Upload wheel artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-py${{ matrix.python-version }}
path: dist/*.whl
Expand All @@ -48,10 +48,10 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Download all artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
path: dist

Expand Down
2 changes: 1 addition & 1 deletion navconfig/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Configuration tool for all Navigator Services "
"Tool for accessing Config info from different sources."
)
__version__ = "1.7.3"
__version__ = "1.7.4"
__author__ = "Jesus Lara"
__author_email__ = "jesuslarag@gmail.com"
__license__ = "MIT"
3 changes: 2 additions & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import pytest
import os
import logging
from logging.config import dictConfig
import asyncio
from pathlib import Path
import pytest
import pytest_asyncio
from navconfig.logging import logging_config


Expand Down

0 comments on commit 7997591

Please sign in to comment.