Skip to content

Commit

Permalink
Merge pull request #95 from ihmeuw/develop
Browse files Browse the repository at this point in the history
Release v3.1.0
  • Loading branch information
stevebachmeier committed Jun 1, 2023
2 parents 13f2f69 + 026eea7 commit e5bdb7b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Print environment values
run: |
python --version
cat $GITHUB_ENV
- name: Update pip
run: |
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: '3.11'
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
Expand All @@ -23,4 +24,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload dist/*
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
**3.1.0 - 06/01/23**

- Update vivarium_gbd_access pin
- Support Python 3.8-3.11
- Update git actions to remove warnings

**3.0.6 - 07/05/22**

- Add CODEOWNERS
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
]

data_requires = [
"vivarium-gbd-access>=3.0.5",
"vivarium-gbd-access>=3.0.7",
]

test_requirements = [
Expand Down
2 changes: 1 addition & 1 deletion src/gbd_mapping/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__summary__ = "A programmatically accessible mapping of gbd entities."
__uri__ = "https://github.com/ihmeuw/gbd_mapping"

__version__ = "3.0.6"
__version__ = "3.1.0"

__author__ = "The vivarium developers"
__email__ = "vivarium.dev@gmail.com"
Expand Down

0 comments on commit e5bdb7b

Please sign in to comment.