Skip to content

Commit 6502830

Browse files
committed
merge resolution
2 parents 809aea0 + 435110c commit 6502830

File tree

11 files changed

+136
-212
lines changed

11 files changed

+136
-212
lines changed

.gitignore

Lines changed: 118 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,118 @@
1-
__pycache__/
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
18+
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
.hypothesis/
48+
.pytest_cache/
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
local_settings.py
57+
58+
# Flask stuff:
59+
instance/
60+
.webassets-cache
61+
62+
# Scrapy stuff:
63+
.scrapy
64+
65+
# Sphinx documentation
66+
docs/_build/
67+
docs/api_reference/
68+
69+
# PyBuilder
70+
target/
71+
72+
# Jupyter Notebook
73+
.ipynb_checkpoints
74+
75+
# pyenv
76+
.python-version
77+
78+
# celery beat schedule file
79+
celerybeat-schedule
80+
81+
# SageMath parsed files
82+
*.sage.py
83+
84+
# dotenv
85+
.env
86+
87+
# virtualenv
88+
.venv
89+
venv/
90+
ENV/
91+
92+
# Spyder project settings
93+
.spyderproject
94+
.spyproject
95+
96+
# Rope project settings
97+
.ropeproject
98+
99+
# mkdocs documentation
100+
/site
101+
102+
# mypy
103+
.mypy_cache/
104+
105+
# vim
106+
.*.swp
107+
108+
# IDE
109+
.vscode/
110+
.idea/
111+
112+
data/
113+
output/
114+
orion-jupyter.tar
115+
*.csv
116+
*.pkl
117+
118+
.DS_Store

Makefile

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ publish: dist ## package and upload a release
9595
twine upload dist/*
9696

9797
.PHONY: bumpversion-release
98-
bumpversion-release: ## Merge master to stable and bumpversion release
98+
bumpversion-release: ## Merge main to stable and bumpversion release
9999
git checkout stable
100-
git merge --no-ff master -m"make release-tag: Merge branch 'master' into stable"
100+
git merge --no-ff main -m"make release-tag: Merge branch 'main' into stable"
101101
bumpversion release
102102
git push --tags origin stable
103103

104104
.PHONY: bumpversion-patch
105-
bumpversion-patch: ## Merge stable to master and bumpversion patch
106-
git checkout master
105+
bumpversion-patch: ## Merge stable to main and bumpversion patch
106+
git checkout main
107107
git merge stable
108108
bumpversion --no-tag patch
109109
git push
@@ -123,10 +123,10 @@ bumpversion-candidate: ## Bump the version to the next candidate
123123
CURRENT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
124124
CHANGELOG_LINES := $(shell git diff HEAD..origin/stable HISTORY.md 2>&1 | wc -l)
125125

126-
.PHONY: check-master
127-
check-master: ## Check if we are in master branch
128-
ifneq ($(CURRENT_BRANCH),master)
129-
$(error Please make the release from master branch\n)
126+
.PHONY: check-main
127+
check-main: ## Check if we are in main branch
128+
ifneq ($(CURRENT_BRANCH),main)
129+
$(error Please make the release from main branch\n)
130130
endif
131131

132132
.PHONY: check-history
@@ -136,13 +136,13 @@ ifeq ($(CHANGELOG_LINES),0)
136136
endif
137137

138138
.PHONY: check-release
139-
check-release: check-master check-history ## Check if the release can be made
139+
check-release: check-main check-history ## Check if the release can be made
140140

141141
.PHONY: release
142142
release: check-release bumpversion-release publish bumpversion-patch
143143

144144
.PHONY: release-candidate
145-
release-candidate: check-master publish bumpversion-candidate
145+
release-candidate: check-main publish bumpversion-candidate
146146

147147
.PHONY: release-minor
148148
release-minor: check-release bumpversion-minor release

pygridsim.egg-info/PKG-INFO

Lines changed: 0 additions & 140 deletions
This file was deleted.

pygridsim.egg-info/SOURCES.txt

Lines changed: 0 additions & 24 deletions
This file was deleted.

pygridsim.egg-info/dependency_links.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

pygridsim.egg-info/not-zip-safe

Lines changed: 0 additions & 1 deletion
This file was deleted.

pygridsim.egg-info/requires.txt

Lines changed: 0 additions & 23 deletions
This file was deleted.

pygridsim.egg-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

pygridsim/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
__author__ = 'Angela Zhao'
66
__email__ = '[email protected]'
7-
__version__ = '0.1.0.dev0'
7+
__version__ = '0.1.0.dev1'
88

99
from pygridsim.core import PyGridSim as PyGridSim

0 commit comments

Comments
 (0)