Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
kervias committed Aug 18, 2023
1 parent 3560794 commit a3fab76
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install pytest
pip install torch==1.12.1
pip install torch==1.12.1 --index-url https://download.pytorch.org/whl/cpu
pip install -e . --verbose
pip install -r requirements.txt
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = 'EduStudio'
copyright = '2023, HFUT-LEC'
author = 'HFUT-LEC'
release = 'v1.0.0-beta1'
release = 'v1.0.0-beta2'

import sphinx_rtd_theme
import os
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.. EduStudio documentation master file.
.. title:: EduStudio v1.0.0-beta1
.. title:: EduStudio v1.0.0-beta2
.. image:: assets/logo.png

=========================================================
Expand Down
2 changes: 1 addition & 1 deletion edustudio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from __future__ import print_function
from __future__ import division

__version__ = 'v1.0.0-beta1'
__version__ = 'v1.0.0-beta2'
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ requests>=2.27.1
pytz>=2022.1
matplotlib>=3.5.1
deepdiff>=6.3.1
networkx>=2.8
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"pytz>=2022.1",
"matplotlib>=3.5.1",
"deepdiff>=6.3.1",
"networkx>=2.8"
]

setup_requires = []
Expand All @@ -41,7 +42,7 @@

setup(
name="edustudio",
version="v1.0.0-beta1",
version="v1.0.0-beta2",
description="a Unified and Templatized Framework for Student Assessment Models",
long_description=long_description,
python_requires='>=3.8',
Expand Down

0 comments on commit a3fab76

Please sign in to comment.