Skip to content

Commit

Permalink
Chore: Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
speedcell4 committed Mar 3, 2022
1 parent efec2a5 commit 1508825
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

## Requirements

- Python 3.7
- PyTorch 1.6.0
- Python 3.8
- PyTorch 1.10.2

## Installation

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

setup(
name=name,
version='0.4.1',
version='0.4.2',
packages=[package for package in find_packages() if package.startswith(name)],
url='https://github.com/speedcell4/torchlatent',
license='MIT',
author='speedcell4',
author_email='speedcell4@gmail.com',
description='High Performance Structured Prediction in PyTorch',
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=[
'numpy',
'torchrua>=0.3.0',
'torchrua>=0.4.0',
],
extras_require={
'dev': [
Expand Down

0 comments on commit 1508825

Please sign in to comment.